@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');


*{
margin:0;
padding:0;
box-sizing:border-box;
}


:root{

--navy:#071a33;
--navy2:#102844;
--gold:#d4af37;
--gold-light:#f1d77a;
--white:#fff;
--text:#d9d9d9;

--glass:rgba(255,255,255,.08);
--border:rgba(212,175,55,.25);

}



body{

font-family:'Montserrat',sans-serif;

background:
linear-gradient(
135deg,
#071a33,
#102844
);

color:white;

min-height:100vh;

}



/* =====================
 NAVBAR
===================== */


/* =========================
   LUXURY ACADEMY NAVBAR
========================= */

.navbar{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:35px;

    padding:22px 70px;

    position:sticky;

    top:0;

    z-index:100;

    background:#071a33;

    border-bottom:1px solid rgba(212,175,55,.25);

}


/* LOGO */

.logo{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    font-weight:700;

    color:white;

    text-decoration:none;

    margin-right:20px;

}



.logo span{

    color:#d4af37;

}




/* NAV LINKS */

.nav-btn{

    background:none;

    color:white;

    text-decoration:none;

    font-family:'Montserrat',sans-serif;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    padding:8px 0;

    border-radius:0;

    border:none;

    position:relative;

    transition:.3s;

}



/* GOLD UNDERLINE EFFECT */

.nav-btn::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0%;

    height:2px;

    background:#d4af37;

    transition:.3s;

}



.nav-btn:hover{

    color:#d4af37;

}



.nav-btn:hover::after{

    width:100%;

}



/* ACTIVE HOME BUTTON */

.nav-btn.home{

    color:#d4af37;

    background:none;

}



.nav-btn.home::after{

    width:100%;

}



/* REGISTER BUTTON */

.nav-btn.register{

    background:#d4af37;

    color:#071a33;

    padding:12px 28px;

    border-radius:2px;

}



.nav-btn.register:hover{

    background:white;

    color:#071a33;

}



.nav-btn.register::after{

    display:none;

}



/* MOBILE */

@media(max-width:900px){

.navbar{

    padding:20px;

    gap:20px;

}


.logo{

    width:100%;

    text-align:center;

}


}



/* =====================
 HERO
===================== */


.hero{

text-align:center;

padding:90px 20px 50px;

}



.hero-badge{

display:inline-block;

color:var(--gold);

border:1px solid var(--gold);

padding:8px 22px;

font-size:12px;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:25px;

}



.hero h1{

font-family:'Cormorant Garamond';

font-size:70px;

line-height:1;

}



.hero h1 span{

color:var(--gold);

}



.hero p{

max-width:600px;

margin:25px auto;

color:#ddd;

font-size:17px;

line-height:1.8;

}



/* =====================
 LAYOUT
===================== */


.page-wrap{

max-width:1200px;

margin:auto;

padding:20px 30px 90px;

display:grid;

grid-template-columns:1fr 340px;

gap:40px;

}



@media(max-width:900px){

.page-wrap{

grid-template-columns:1fr;

}

}




/* =====================
 CALENDAR
===================== */


.cal-grid{

background:rgba(255,255,255,.08);

border:1px solid var(--border);

border-radius:8px;

overflow:hidden;

}



.cal-dow-row{

display:grid;

grid-template-columns:repeat(7,1fr);

background:rgba(212,175,55,.15);

}



.cal-dow{

padding:15px;

text-align:center;

color:var(--gold);

font-size:12px;

font-weight:800;

}



.cal-days{

display:grid;

grid-template-columns:repeat(7,1fr);

}



.cal-day{

min-height:100px;

padding:10px;

border-right:1px solid rgba(255,255,255,.08);

border-top:1px solid rgba(255,255,255,.08);

transition:.3s;

}



.cal-day:hover{

background:rgba(212,175,55,.08);

}



.cal-day.today .cal-day-num{

background:var(--gold);

color:#071a33;

border-radius:50%;

}



.cal-day-num{

font-weight:700;

width:30px;

height:30px;

display:flex;

align-items:center;

justify-content:center;

}




/* =====================
 EVENTS
===================== */


.cal-event-pill{

background:var(--gold);

color:#071a33;

padding:4px 8px;

border-radius:3px;

font-size:10px;

font-weight:800;

margin-top:4px;

}



.cal-more{

color:#ddd;

font-size:11px;

}





/* =====================
 SIDEBAR
===================== */


.sidebar-card{


background:rgba(255,255,255,.08);

border:1px solid var(--border);

padding:25px;

border-radius:8px;

margin-bottom:25px;

}



.sidebar-card h3{

font-family:'Cormorant Garamond';

font-size:30px;

color:white;

margin-bottom:20px;

}





.ev-item{

padding:15px 0;

border-bottom:1px solid rgba(255,255,255,.1);

}



.ev-item-title{

font-weight:700;

}



.ev-item-date,
.ev-item-time{

color:#ccc;

font-size:12px;

}




/* =====================
 EVENT CARDS
===================== */


.ev-card{


background:rgba(255,255,255,.08);

border:1px solid var(--border);

border-radius:8px;

padding:22px;

display:flex;

gap:20px;

margin-bottom:15px;

transition:.3s;

}



.ev-card:hover{

transform:translateY(-5px);

box-shadow:0 20px 50px rgba(0,0,0,.35);

}



.ev-card-date-box{

background:var(--gold);

color:#071a33;

padding:15px;

text-align:center;

border-radius:4px;

}



.ev-card-day{

font-family:'Cormorant Garamond';

font-size:35px;

font-weight:700;

}



.ev-card-month{

font-size:12px;

font-weight:700;

}




.ev-card-title{

font-family:'Cormorant Garamond';

font-size:30px;

}



.ev-card-meta,
.ev-card-desc{

color:#ddd;

font-size:14px;

line-height:1.6;

}




/* =====================
 MODAL
===================== */


.modal-overlay{

background:rgba(7,26,51,.9);

}



.modal-box{


background:#071a33;

border:1px solid var(--gold);

border-radius:8px;

}



.modal-title{

font-family:'Cormorant Garamond';

font-size:40px;

}



.modal-desc{

background:rgba(255,255,255,.06);

color:#ddd;

}





/* =====================
 MOBILE
===================== */


@media(max-width:600px){

.hero h1{

font-size:45px;

}


.page-wrap{

padding:20px 15px;

}


.cal-day{

min-height:65px;

}


}

/*=========================
        FOOTER
=========================*/

.footer{
    background:#071a33;
    color:#fff;
    padding-top:70px;
}

.footer-container{

    width:90%;
    max-width:1400px;
    margin:auto;

    border-top:1px solid rgba(255,255,255,.15);

    padding:70px 0;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:70px;

}

.footer-column h3{

    font-family:'Cormorant Garamond', serif;
    color:#d4af37;
    font-size:34px;
    margin-bottom:35px;
    letter-spacing:2px;

}

.footer-column ul{
    list-style:none;
}

.footer-column li{
    margin-bottom:18px;
}

.footer-column a{

    color:#ececec;
    text-decoration:none;
    transition:.3s;
    font-size:16px;

}

.footer-column a:hover{

    color:#d4af37;
    padding-left:8px;

}

.social-links{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.footer-column p{

    color:#ddd;
    margin-bottom:18px;
    line-height:1.8;

}

.footer-bottom{

    width:90%;
    max-width:1400px;
    margin:auto;

    border-top:1px solid rgba(255,255,255,.15);

    padding:25px 0;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;

    color:#cfcfcf;

}

.footer-bottom strong{
    color:#d4af37;
}

/*=========================
        MOBILE
=========================*/

@media(max-width:900px){

.footer-container{

    grid-template-columns:1fr;
    text-align:center;

}

.social-links{

    align-items:center;

}

.footer-bottom{

    flex-direction:column;
    text-align:center;

}

}
