/* GLOBAL */
body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f4f4;
    color:#222;
    font-size:16px;
}


/* HEADER */

.site-header{
    background:#3c1361;
    border-bottom:4px solid #d4af37;
    color:white;
}

.header-container{
    max-width:1300px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 24px;
}

.site-title{
    font-size:28px;
    font-weight:700;
    color:white;
}


/* NAVIGATION */

.nav-menu a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-weight:500;
    font-size:15px;
    transition:color .18s ease;
}

.nav-menu a:hover{
    color:#f3d46b;
}

.portal-button{
    border:2px solid #d4af37;
    padding:8px 14px;
    border-radius:8px;
}


/* HERO SECTION */

.hero{
    text-align:center;
    background:#2b0d49;
    color:white;
    padding:80px 20px 70px;
}

.hero-banner{
    max-width:800px;
    width:90%;
}

.tagline{
    font-size:24px;
    margin-top:22px;
    margin-bottom:28px;
    letter-spacing:.3px;
    font-weight:600;
}


/* HERO BUTTONS */

.hero-buttons{
    margin-top:10px;
}

.hero-btn{
    background:#d4af37;
    color:#2b0d49;
    text-decoration:none;
    padding:14px 24px;
    margin:10px;
    border-radius:8px;
    font-weight:bold;
    display:inline-block;
    letter-spacing:.3px;
    transition:all .18s ease;
    box-shadow:0 2px 4px rgba(0,0,0,.25);
}

.hero-btn:hover{
    background:#e6c34a;
    transform:translateY(-3px);
    box-shadow:0 6px 12px rgba(0,0,0,.35);
}

.hero-btn:active{
    transform:translateY(0);
    box-shadow:0 2px 4px rgba(0,0,0,.25);
}


/* URGENT MESSAGE BANNER */

.urgent-banner{
    background:#e6c34a;
    border-top:2px solid #d4af37;
    border-bottom:2px solid #c49b1f;
    padding:14px 20px;
    margin-top:0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.25),
                inset 0 -1px 0 rgba(0,0,0,.08);
}

.urgent-container{
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-align:center;
    color:#2b0d49;
    font-weight:700;
    font-size:20px;
    line-height:1.4;
}

.urgent-icon{
    font-size:22px;
    line-height:1;
}

.urgent-text{
    display:inline-block;
}


/* INFO CARDS SECTION */

.info-section{
    padding:60px 20px 50px;
    background:#2b0d49;
}

.info-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:stretch;
}

.info-card{
    background:#f8f8e8;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.12);
    text-align:left;
    color:#3c1361;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    height:100%;
}

.info-card h2{
    margin-top:0;
    margin-bottom:18px;
    color:#3c1361;
    font-size:34px;
    text-align:center;
}

.info-card p{
    line-height:1.75;
    margin-bottom:16px;
    font-size:17px;
}

.event-list{
    list-style:none;
    padding:0;
    margin:0 0 20px 0;
}

.event-list li{
    padding:12px 0;
    border-bottom:1px solid #e5e5e5;
    line-height:1.55;
    font-size:18px;
}

.event-list li:last-child{
    border-bottom:none;
}

.card-link{
    display:inline-block;
    margin-top:auto;
    align-self:center;
    text-decoration:none;
    font-weight:bold;
    color:#3c1361;
    border:2px solid #d4af37;
    padding:10px 16px;
    border-radius:8px;
    transition:all .18s ease;
}

.card-link:hover{
    background:#d4af37;
    color:#2b0d49;
    transform:translateY(-2px);
    box-shadow:0 4px 8px rgba(0,0,0,.18);
}


/* RESPONSIVE */

@media (max-width: 900px){
    .header-container{
        flex-direction:column;
        gap:15px;
    }

    .nav-menu{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:12px;
    }

    .nav-menu a{
        margin-left:0;
    }

    .info-container{
        grid-template-columns:1fr;
    }

    .site-title{
        text-align:center;
    }

    .hero{
        padding:60px 20px 55px;
    }

    .tagline{
        font-size:20px;
    }

    .info-card h2{
        font-size:28px;
    }

    .info-card p,
    .event-list li{
        font-size:16px;
    }

    .urgent-container{
        font-size:18px;
    }
}
/* QUICK LINKS SECTION */

.quick-links-section{
    background:#f4f4f4;
    padding:70px 20px 80px;
}

.quick-links-container{
    max-width:1300px;
    margin:auto;
}

.quick-links-container h2{
    margin-top:0;
    margin-bottom:28px;
    text-align:center;
    color:#3c1361;
    font-size:36px;
}

.quick-links-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.quick-link-card{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:110px;
    background:#f8f6f0;
    color:#3c1361;
    text-decoration:none;
    font-size:24px;
    font-weight:700;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.10);
    border-top:4px solid #d4af37;
    transition:all .2s ease;
    text-align:center;
    padding:20px;

    position:relative;
    overflow:hidden;
}

.quick-link-card::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:120%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transition:all .5s ease;
}

.quick-link-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 18px rgba(0,0,0,.16);
    background:#f1ebd9;
}

.quick-link-card:hover::after{
    left:120%;
}


/* FOOTER */

.site-footer{
    background:#3c1361;
    color:white;
    padding-top:45px;
    border-top:4px solid #d4af37;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    padding:0 20px 30px;
}

.footer-left h3{
    margin-top:0;
    margin-bottom:18px;
    font-size:30px;
    color:white;
}

.footer-left p,
.footer-right p{
    margin:10px 0;
    font-size:17px;
    line-height:1.6;
}

.footer-right{
    text-align:right;
}

.footer-right a{
    color:white;
    text-decoration:none;
    transition:color .18s ease;
}

.footer-right a:hover{
    color:#f3d46b;
}

.footer-bottom{
    text-align:center;
    padding:18px 20px 22px;
    font-size:15px;
    border-top:1px solid rgba(255,255,255,.15);
    color:#f2f2f2;
}


/* RESPONSIVE ADDITIONS */

@media (max-width: 900px){
    .quick-links-grid{
        grid-template-columns:1fr;
    }

    .quick-link-card{
        font-size:20px;
        min-height:90px;
    }

    .footer-container{
        grid-template-columns:1fr;
    }

    .footer-right{
        text-align:left;
    }

    .quick-links-container h2{
        font-size:30px;
    }

    .footer-left h3{
        font-size:26px;
    }
}
/* SIMPLE INNER PAGE STYLES */

.page-header{
    background:#2b0d49;
    color:white;
    padding:70px 20px 50px;
    text-align:center;
    border-bottom:4px solid #d4af37;
}

.page-header-container{
    max-width:1000px;
    margin:auto;
}

.page-header h1{
    margin:0 0 16px 0;
    font-size:42px;
}

.page-header p{
    margin:0;
    font-size:20px;
    line-height:1.6;
}

.page-content{
    background:#f4f4f4;
    padding:60px 20px 80px;
}

.page-content-container{
    max-width:1100px;
    margin:auto;
    background:white;
    padding:35px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.10);
    color:#3c1361;
    font-size:18px;
    line-height:1.7;
}

/* CALENDAR PAGE */

.calendar-section{
    background:#f4f4f4;
    padding:60px 20px 80px;
}

.calendar-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    align-items:start;
}

/* CALENDAR — CARD FORMAT WITH MONTH HEADERS */

.calendar-main{
    background:#f4f4f4;
    padding:35px;
    border-radius:12px;
}

/* MONTH HEADER */

.calendar-month{
    font-size:28px;
    font-weight:700;
    color:#3c1361;
    margin:40px 0 18px 0;
    padding-bottom:8px;
    border-bottom:3px solid #d4af37;
    letter-spacing:.5px;
}

.calendar-month:first-child{
    margin-top:0;
}


/* EVENT CARD */

.calendar-event-card{
    display:grid;
    grid-template-columns:110px 1fr;
    gap:24px;
    align-items:start;

    background:white;
    padding:22px 24px;
    margin-bottom:22px;

    border-radius:12px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);

    border-left:5px solid #d4af37;

    transition:all .18s ease;
}

.calendar-event-card:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 14px rgba(0,0,0,.12);
}

.calendar-event-card:last-child{
    margin-bottom:0;
}


/* DATE BOX */

.calendar-date{
    background:#f8f6f0;
    border-top:4px solid #d4af37;
    border-radius:12px;
    padding:16px 12px;
    text-align:center;

    box-shadow:0 2px 6px rgba(0,0,0,.08);
}

.calendar-date .month{
    display:block;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    color:#3c1361;
    margin-bottom:6px;
}

.calendar-date .day{
    display:block;
    font-size:38px;
    font-weight:700;
    color:#3c1361;
    line-height:1;
}


/* EVENT TEXT */

.calendar-event-details h3{
    margin:0 0 12px 0;
    font-size:26px;
    color:#3c1361;
}

.calendar-event-details p{
    margin:6px 0;
    font-size:17px;
    line-height:1.6;
    color:#333;
}


/* OPTIONAL EVENT TYPE COLORS */

.event-rehearsal{
    border-left-color:#7a4bb5;
}

.event-performance{
    border-left-color:#2b7a2b;
}

.event-travel{
    border-left-color:#1f6fb2;
}

.event-school{
    border-left-color:#c27a00;
}


/* MOBILE */

@media (max-width:900px){

    .calendar-event-card{
        grid-template-columns:1fr;
    }

    .calendar-date{
        max-width:120px;
    }

    .calendar-month{
        font-size:24px;
    }

    .calendar-event-details h3{
        font-size:22px;
    }

}
/* P&P MANUAL PAGE */

.manual-intro{
    max-width:900px;
    margin:auto;
    background:#f8f6f0;
    padding:40px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.10);
    color:#3c1361;
}

.manual-intro h2{
    margin-top:0;
    margin-bottom:22px;
    font-size:34px;
    text-align:center;
    color:#3c1361;
}

.manual-intro p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:18px;
}

.manual-buttons{
    margin-top:30px;
    text-align:center;
}

.manual-btn{
    display:inline-block;
    text-decoration:none;
    font-weight:700;
    font-size:18px;
    padding:14px 24px;
    border-radius:10px;
    transition:all .18s ease;
    box-shadow:0 2px 4px rgba(0,0,0,.18);
}

.primary-btn{
    background:#d4af37;
    color:#2b0d49;
}

.primary-btn:hover{
    background:#e6c34a;
    transform:translateY(-2px);
    box-shadow:0 6px 12px rgba(0,0,0,.22);
}

.manual-note{
    margin-top:28px;
    padding:18px 20px;
    border-left:4px solid #d4af37;
    background:white;
    border-radius:8px;
}

.manual-note p{
    margin:0;
    font-size:16px;
    line-height:1.7;
    color:#333;
}

@media (max-width:900px){
    .manual-intro{
        padding:28px;
    }

    .manual-intro h2{
        font-size:28px;
    }

    .manual-intro p{
        font-size:16px;
    }

    .manual-btn{
        font-size:17px;
        width:100%;
        max-width:320px;
    }
}
/* FORMS PAGE */

.forms-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:28px;
}

.form-card{
    background:#f8f6f0;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.10);
    color:#3c1361;
    display:flex;
    flex-direction:column;
}

.form-card h2{
    margin-top:0;
    margin-bottom:16px;
    font-size:28px;
    color:#3c1361;
    text-align:center;
}

.form-card p{
    font-size:17px;
    line-height:1.7;
    margin-bottom:22px;
}

.form-btn{
    display:inline-block;
    margin-top:auto;
    align-self:center;
    text-decoration:none;
    font-weight:700;
    font-size:17px;
    padding:12px 20px;
    border-radius:10px;
    background:#d4af37;
    color:#2b0d49;
    transition:all .18s ease;
    box-shadow:0 2px 4px rgba(0,0,0,.18);
}

.form-btn:hover{
    background:#e6c34a;
    transform:translateY(-2px);
    box-shadow:0 6px 12px rgba(0,0,0,.22);
}

@media (max-width:900px){

    .forms-grid{
        grid-template-columns:1fr;
    }

    .form-card h2{
        font-size:24px;
    }

    .form-card p{
        font-size:16px;
    }

}
/* CONTACT PAGE */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.contact-card{
    background:#f8f6f0;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.10);
    color:#3c1361;
}

.contact-card h2{
    margin-top:0;
    margin-bottom:18px;
    font-size:28px;
    text-align:center;
    color:#3c1361;
}

.contact-card p{
    font-size:17px;
    line-height:1.7;
    margin-bottom:12px;
}

.contact-wide{
    grid-column:1 / -1;
}


/* MEDIA PAGE */

.media-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.media-card{
    background:#f8f6f0;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.10);
    color:#3c1361;
    display:flex;
    flex-direction:column;
}

.media-card h2{
    margin-top:0;
    margin-bottom:18px;
    font-size:28px;
    text-align:center;
    color:#3c1361;
}

.media-card p{
    font-size:17px;
    line-height:1.7;
    margin-bottom:20px;
}

.media-btn{
    display:inline-block;
    margin-top:auto;
    align-self:center;
    text-decoration:none;
    font-weight:700;
    font-size:17px;
    padding:12px 20px;
    border-radius:10px;
    background:#d4af37;
    color:#2b0d49;
    transition:all .18s ease;
    box-shadow:0 2px 4px rgba(0,0,0,.18);
}

.media-btn:hover{
    background:#e6c34a;
    transform:translateY(-2px);
    box-shadow:0 6px 12px rgba(0,0,0,.22);
}

.media-wide{
    grid-column:1 / -1;
}


/* PORTAL PAGE */

.portal-card{
    max-width:850px;
    margin:auto;
    background:#f8f6f0;
    padding:40px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.10);
    color:#3c1361;
    text-align:center;
}

.portal-card h2{
    margin-top:0;
    margin-bottom:20px;
    font-size:32px;
    color:#3c1361;
}

.portal-card p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:18px;
}

.portal-info-btn{
    display:inline-block;
    margin-top:14px;
    text-decoration:none;
    font-weight:700;
    font-size:17px;
    padding:12px 22px;
    border-radius:10px;
    background:#d4af37;
    color:#2b0d49;
    transition:all .18s ease;
    box-shadow:0 2px 4px rgba(0,0,0,.18);
}

.portal-info-btn:hover{
    background:#e6c34a;
    transform:translateY(-2px);
    box-shadow:0 6px 12px rgba(0,0,0,.22);
}


/* RESPONSIVE ADDITIONS FOR THESE PAGES */

@media (max-width:900px){

    .contact-grid,
    .media-grid{
        grid-template-columns:1fr;
    }

    .contact-wide,
    .media-wide{
        grid-column:auto;
    }

    .contact-card h2,
    .media-card h2,
    .portal-card h2{
        font-size:24px;
    }

    .contact-card p,
    .media-card p,
    .portal-card p{
        font-size:16px;
    }

    .portal-card{
        padding:28px;
    }
}
