
/*
Theme Name: Aamira Bridal Vera Style
Version: 3.0
*/

:root{
--bg:#f5f0ea;
--dark:#111;
--light:#fff;
--muted:#6d665f;
}

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

body{
background:var(--bg);
color:var(--dark);
font-family:'Cormorant Garamond', serif;
overflow-x:hidden;
}

html{
scroll-behavior:smooth;
}

img{
width:100%;
display:block;
}

.site-header{
position:fixed;
top:0;
left:0;
width:100%;
padding:30px 70px;
display:flex;
justify-content:space-between;
align-items:center;
z-index:999;
transition:0.4s ease;
backdrop-filter:blur(12px);
}

.site-header.scrolled{
background:rgba(255,255,255,0.92);
}

.site-logo a{
text-decoration:none;
font-size:32px;
letter-spacing:2px;
font-style:italic;
color:#fff;
}

.site-header.scrolled .site-logo a,
.site-header.scrolled .primary-nav a{
color:#111;
}

.primary-nav{
display:flex;
gap:40px;
}

.primary-nav a{
text-decoration:none;
color:#fff;
font-size:12px;
letter-spacing:2px;
text-transform:uppercase;
font-family:'Jost',sans-serif;
}

.hero{
height:100vh;
position:relative;
overflow:hidden;
}

.hero img{
height:100vh;
object-fit:cover;
filter:brightness(0.72);
animation:zoomHero 18s ease-in-out infinite alternate;
}

@keyframes zoomHero{
from{transform:scale(1);}
to{transform:scale(1.08);}
}

.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(to bottom,rgba(0,0,0,0.15),rgba(0,0,0,0.55));
}

.hero-content{
position:absolute;
left:8%;
bottom:12%;
max-width:760px;
color:#fff;
z-index:2;
animation:fadeUp 1.5s ease;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(60px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.eyebrow{
font-size:12px;
letter-spacing:4px;
text-transform:uppercase;
font-family:'Jost',sans-serif;
margin-bottom:25px;
}

.hero-title{
font-size:118px;
line-height:0.9;
font-weight:300;
margin-bottom:30px;
}

.hero-subtitle{
font-size:20px;
line-height:1.8;
max-width:620px;
font-family:'Jost',sans-serif;
}

.hero-buttons{
margin-top:40px;
display:flex;
gap:18px;
}

.btn{
padding:18px 36px;
border:1px solid rgba(255,255,255,0.4);
text-decoration:none;
color:#fff;
font-size:11px;
letter-spacing:2px;
font-family:'Jost',sans-serif;
text-transform:uppercase;
transition:0.4s ease;
}

.btn:hover{
background:#fff;
color:#111;
}

.section{
padding:140px 8%;
}

.section-white{
background:#fff;
}

.grid-two{
display:grid;
grid-template-columns:1.1fr 0.9fr;
gap:70px;
align-items:center;
}

.grid-two img{
height:860px;
object-fit:cover;
}

.headline{
font-size:70px;
line-height:1;
font-weight:300;
margin-bottom:24px;
}

.body{
font-size:18px;
line-height:1.9;
font-family:'Jost',sans-serif;
color:var(--muted);
}

.collection-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
margin-top:70px;
}

.collection-card{
overflow:hidden;
}

.collection-card img{
height:650px;
object-fit:cover;
transition:0.7s ease;
}

.collection-card:hover img{
transform:scale(1.06);
}

.collection-title{
font-size:38px;
margin-top:20px;
}

.collection-meta{
font-size:12px;
letter-spacing:2px;
text-transform:uppercase;
font-family:'Jost',sans-serif;
color:var(--muted);
margin-top:10px;
}

.dark-editorial{
background:#0d0d0d;
color:#fff;
display:grid;
grid-template-columns:0.8fr 1.2fr;
align-items:center;
}

.dark-editorial img{
height:600px;
object-fit:cover;
}

.cta{
background:#f7f2ed;
text-align:center;
padding:180px 8%;
}

.footer{
background:#0d0d0d;
color:#fff;
padding:70px 8%;
display:flex;
justify-content:space-between;
font-family:'Jost',sans-serif;
font-size:13px;
}

.reveal{
opacity:0;
transform:translateY(40px);
transition:1s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

@media(max-width:991px){

.site-header{
padding:20px;
}

.primary-nav{
display:none;
}

.hero-title{
font-size:62px;
}

.grid-two,
.collection-grid,
.dark-editorial{
grid-template-columns:1fr;
}

.section{
padding:90px 24px;
}

.footer{
flex-direction:column;
gap:20px;
text-align:center;
}

}
