/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#141919;
color:white;
line-height:1.6;
overflow-x:hidden;
}


/* CONTAINER */

.container{
width:90%;
max-width:1200px;
margin:auto;
}


/* HEADER */

.header{
position:sticky;
top:0;
z-index:1100;
backdrop-filter:blur(10px);
background:rgba(20,25,25,0.85);
border-bottom:1px solid rgba(255,255,255,0.05);
}

.header-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-weight:700;
font-size:20px;
color:#ffbd59;
text-decoration:none;
}


/* DESKTOP NAV */

.desktop-nav{
display:flex;
align-items:center;
gap:25px;
}

.desktop-nav a{
text-decoration:none;
color:white;
font-weight:500;
transition:0.3s;
}

.desktop-nav a:hover{
color:#ffbd59;
}


/* HAMBURGER */

.menu-toggle{
display:none;
cursor:pointer;
width:30px;
height:20px;
flex-direction:column;
justify-content:space-between;
z-index:1200;
}

.menu-toggle span{
display:block;
height:3px;
width:100%;
background:white;
border-radius:3px;
transition:0.3s;
}


/* HERO */

.hero{
height:100vh;

background:
linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
url("https://images.unsplash.com/photo-1583454110551-21f2fa2afe61");

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
}

.hero h1{
font-size:64px;
color:#ffbd59;
margin-bottom:20px;
line-height:1.2;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}


/* BUTTONS */

.btn{
background:#ffbd59;
padding:14px 32px;
color:#141919;
text-decoration:none;
font-weight:600;
border-radius:6px;
display:inline-block;
transition:0.3s;
}

.btn:hover{
transform:translateY(-3px);
}

.btn-dark{
background:#141919;
color:white;
padding:14px 32px;
border-radius:6px;
text-decoration:none;
display:inline-block;
}


/* STATS */

.stats{
padding:70px 0;
}

.stats-container{
display:flex;
justify-content:center;
gap:80px;
text-align:center;
}

.stat-box h2{
color:#ffbd59;
font-size:42px;
margin-bottom:5px;
}


/* SERVICES */

.services{
padding:100px 0;
text-align:center;
}

.section-title{
font-size:36px;
margin-bottom:40px;
color:#ffbd59;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.service-card{
background:#1f2424;
padding:40px;
border-radius:12px;
transition:0.3s;
}

.service-card:hover{
transform:translateY(-10px);
border:1px solid #ffbd59;
}


/* PACKAGES */

.packages{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
margin-top:40px;
}

.package{
background:#1f2424;
padding:40px;
border-radius:12px;
width:280px;
text-align:center;
transition:0.3s;
}

.package:hover{
transform:translateY(-10px);
border:1px solid #ffbd59;
}

.featured{
border:2px solid #ffbd59;
}

.price{
font-size:26px;
margin:20px 0;
color:#ffbd59;
}


/* ABOUT HERO */

.about-hero{
padding:100px 0;
text-align:center;
background:#0f1212;
}

.about-hero h1{
font-size:48px;
color:#ffbd59;
margin-bottom:15px;
}


/* STORY */

.story-section{
padding:80px 0;
}

.story-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.story-card{
background:#1f2424;
padding:30px;
border-radius:12px;
transition:0.3s;
}

.story-card:hover{
transform:translateY(-8px);
border:1px solid #ffbd59;
}

.story-card h3{
color:#ffbd59;
margin-bottom:10px;
}


/* CTA */

.cta{
background:#ffbd59;
color:#141919;
padding:80px 0;
text-align:center;
}

.cta p{
margin:10px 0 20px;
}


/* FOOTER */

.footer{
text-align:center;
padding:30px 0;
background:#0f1212;
}


/* MOBILE MENU PANEL */

#nav-menu{
position:fixed;
top:0;
right:-260px;
width:260px;
height:100vh;
background:#0f1212;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:30px;
transition:0.4s;
z-index:1100;
}

#nav-menu.active{
right:0;
}

#nav-menu a{
color:white;
text-decoration:none;
font-size:18px;
}


/* MENU HEADER */

.menu-header{
position:absolute;
top:20px;
left:20px;
right:20px;
display:flex;
justify-content:space-between;
align-items:center;
}

.menu-title{
color:#ffbd59;
font-weight:600;
}

.menu-close{
font-size:24px;
cursor:pointer;
}


/* OVERLAY */

.menu-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(5px);
opacity:0;
visibility:hidden;
transition:0.3s;
z-index:1000;
}

.menu-overlay.active{
opacity:1;
visibility:visible;
}


/* MOBILE */

@media(max-width:768px){

.hero h1{
font-size:38px;
}

.stats-container{
flex-direction:column;
gap:30px;
}

.menu-toggle{
display:flex;
}

.desktop-nav{
display:none;
}

}


/* HAMBURGER ANIMATION */

.menu-toggle.open span:nth-child(1){
transform:rotate(45deg) translateY(8px);
}

.menu-toggle.open span:nth-child(2){
opacity:0;
}

.menu-toggle.open span:nth-child(3){
transform:rotate(-45deg) translateY(-8px);
}