:root{
    color-scheme: light dark;
--ochre:#f2ee22;
--cream:#FDFBF7;
--dark:#0A0A0A;
}

body{
margin:0;
font-family:'Unbounded',sans-serif;
background:var(--dark);
color:white;
overflow-x:hidden;
}

/* NAV */

.header-nav{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
z-index:999;
background:linear-gradient(to bottom,rgba(255,255,255,1),transparent);
/* background: #fff; */
}

.logo{
font-weight:900;
letter-spacing:2px;
}

/* HERO */

.hero-section{
height:100vh;
position:relative;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}

.hero-img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
filter:grayscale(.3) contrast(1.2);
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to bottom,rgba(0,0,0,.2),rgba(0,0,0,.9));
}

.hero-title{
position:relative;
z-index:3;
text-align:center;
}

.hero-title h1{
font-size:clamp(4rem,10vw,12rem);
line-height:.8;
font-weight:900;
}

.hero-title span{
color:var(--ochre);
}

.sub{
font-family: "Style Script", cursive;
font-size:clamp(2rem,4vw,6rem);
color:var(--ochre);
}

.spotlight{
position:absolute;
width:500px;
height:500px;
border-radius:50%;
pointer-events:none;
background:radial-gradient(circle,rgba(255,255,255,.25)0%,rgba(0,0,0,0)60%);
mix-blend-mode:overlay;
transform:translate(-50%,-50%);
}

.section-light{
background:var(--cream);
color:#111;
padding:120px 0;
border-radius:80px 80px 0 0;
margin-top:-8vh;
}

/* BENTO */

.bento{
display:grid;
grid-template-columns:repeat(12,1fr);
gap:20px;
}

.card-bento{
background:white;
border-radius:30px;
padding:40px;
border:1px solid #eee;
transition: transform 0.5s ease;
}

.card-bento:hover{
box-shadow: 8px 16px 8px rgba(0, 0, 0, 0.2);
transform: scale(0.9)!important;
}

.main-card{
grid-column:span 6;
background:#111;
color:white;
text-align:center;
}

.side-card{grid-column:span 3;}

.wide-card{
grid-column:span 12;
display:flex;
justify-content:space-between;
align-items:center;
}

@media (max-width:768px){

.bento{
grid-template-columns:repeat(12,1fr);
}

.main-card,
.side-card,
.wide-card{
grid-column:span 12;
text-align:center;
}

.wide-card{
flex-direction:column;
gap:20px;
}

.card-bento{
padding:30px 20px;
}

}

.countdown{
display:flex;
gap:30px;
justify-content:center;
}

.countdown span{
font-size:48px;
font-weight:900;
}

/* VIDEO */

.video-box{
max-width:1200px;
margin:120px auto;
border-radius:40px;
overflow:hidden;
box-shadow:0 40px 100px rgba(0,0,0,.3);
}

/* EDITORIAL */

.editorial{
max-width:900px;
margin:120px auto;
font-size:1.6rem;
line-height:1.5;
}

.editorial strong{
color:var(--ochre);
font-family:'Playfair Display';
}

/* GALLERY */

.gallery-grid{
column-count:3;
column-gap:20px;
}

.gallery-img{
break-inside:avoid;
margin-bottom:20px;
border-radius:20px;
overflow:hidden;
box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.gallery-img img{
width:100%;
display:block;
transition:.6s;
}

.gallery-img:hover img{
transform:scale(1.08);
}

/* FEED */

.social{
background:#f1eee9;
padding:120px 0;
}

.feed-title{
font-size:70px;
font-weight:900;
color:#111;
text-align:center;
}

.feed-divider{
width:120px;
height:4px;
background:var(--ochre);
margin:20px auto 60px;
}

.feed-box{
height:400px;
background:white;
border-radius:20px;
display:flex;
align-items:center;
justify-content:center;
}

/* FOOTER */

.lux-footer{
background:#000;
padding:120px 0;
text-align:center;
}

.footer-logo{
font-size:40px;
font-weight:900;
margin-bottom:40px;
}

.footer-menu, .footer-policy{
display:flex;
justify-content:center;
gap:40px;
margin-bottom:40px;
flex-wrap:wrap;
}

.footer-menu a, .footer-policy a{
color:#aaa;
text-decoration:none;
}

.footer-policy a {
	font-size: 13px;
}

.footer-social{
display:flex;
justify-content:center;
gap:25px;
margin-bottom:40px;
}

.footer-social a{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#111;
color:white;
text-decoration: none;
}


.btn:hover{
	color: #fff!important;
}