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

html {
scroll-behavior: smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#000;
color:#fff;
line-height:1.7;
overflow-x:hidden;
}

a{
text-decoration:none;
color:#D4AF37;
transition:0.3s;
}

a:hover{
color:#F5D77A;
}

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

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:rgba(0,0,0,0.95);
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid rgba(212,175,55,0.2);
transition:0.3s ease;
}

.navbar.scrolled{
background:rgba(0,0,0,0.98);
backdrop-filter: blur(10px);
box-shadow:0 5px 20px rgba(0,0,0,0.5);
}

.logo img{
height:60px;
}

.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:90px;
right:20px;
background:#111;
padding:15px;
border-radius:10px;
gap:15px;
list-style:none;
z-index:1001;
}

.nav-links.active{
display:flex;
}

.nav-links a{
font-weight:500;
}

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

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,0.65),
rgba(0,0,0,0.75)),
url('hero-bg.jpg');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.hero-content{
max-width:900px;
animation:fadeIn 1s ease;
}

@keyframes fadeIn{
from{
opacity:0;
transform:scale(0.95);
}
to{
opacity:1;
transform:scale(1);
}
}

.hero-logo{
width:180px;
margin-bottom:20px;
}

.hero h1{
font-family:'Cinzel',serif;
font-size:4rem;
color:#D4AF37;
letter-spacing:3px;
margin-bottom:10px;
}

.tagline{
font-size:1.4rem;
margin-bottom:20px;
color:#F5D77A;
}

.hero-description{
max-width:700px;
margin:auto;
margin-bottom:35px;
}
/* ================= HERO BUTTONS FIX (SAME LOOK) ================= */

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
padding:14px 30px;
border-radius:50px;
font-weight:600;
transition:0.3s ease;
position:relative;
overflow:hidden;
}

/* SAME GOLD STYLE FOR BOTH */
.btn-primary,
.btn-secondary{
background:#D4AF37;
color:#000;
}

/* HOVER EFFECT */
.btn-primary:hover,
.btn-secondary:hover{
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(212,175,55,0.25);
}
/* ================= SECTIONS ================= */

.section{
padding:100px 8%;
text-align:center;
}

.section h2{
font-family:'Cinzel',serif;
font-size:2.5rem;
color:#D4AF37;
margin-bottom:25px;
}

.section p{
max-width:800px;
margin:10px auto;
color:rgba(255,255,255,0.85);
}

/* ================= FOUNDATION ================= */

.foundation{
padding:100px 8%;
background:#050505;
text-align:center;
}

.foundation h2{
font-family:'Cinzel',serif;
font-size:2.5rem;
color:#D4AF37;
margin-bottom:50px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
padding:35px;
background:#111;
border:1px solid rgba(212,175,55,0.2);
border-radius:15px;
transition:0.4s ease;
}

/* safe animation (NO DISAPPEAR ISSUE) */
.card.reveal{
opacity:1;
transform:none;
transition:0.6s ease;
}

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

.card:hover{
transform:translateY(-10px);
box-shadow:0 15px 30px rgba(212,175,55,0.15);
}

/* ================= PAGE BANNER ================= */

.page-banner{
padding:120px 20px;
text-align:center;
background:#050505;
}

.page-banner h1{
font-family:'Cinzel',serif;
font-size:3rem;
color:#D4AF37;
}

/* ================= COMING SOON FIX ================= */

.coming-soon{
padding:120px 20px;
text-align:center;
}

.coming-soon h2{
font-family:'Cinzel',serif;
font-size:3rem;
color:#D4AF37;
margin-bottom:20px;
}

.coming-soon p{
max-width:600px;
margin:0 auto;
color:rgba(255,255,255,0.8);
}

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

footer{
padding:40px 20px;
text-align:center;
border-top:1px solid rgba(212,175,55,0.2);
}

footer img{
height:70px;
margin-bottom:15px;
}

footer p{
margin:8px 0;
color:rgba(255,255,255,0.85);
}

/* ================= REVEAL SAFE SYSTEM ================= */

.reveal{
opacity:1;
transform:none;
transition:0.6s ease;
}

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

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

.menu-toggle{
display:block;
font-size:30px;
cursor:pointer;
color:#D4AF37;
}

@media(max-width:768px){

.navbar{
flex-direction:row;
}

.menu-toggle{
display:block;
}

.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:90px;
right:20px;
background:#111;
padding:15px;
border-radius:10px;
gap:15px;
z-index:1001;
}

.nav-links.active{
display:flex;
}

.hero h1{
font-size:2.5rem;
}

.hero-logo{
width:130px;
}

.tagline{
font-size:1.1rem;
}

.section h2,
.foundation h2,
.page-banner h1{
font-size:2rem;
}

}