*{ 
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}
body{
    background:#0f0f0f;
    color:white;
    overflow-x:hidden;
    position:relative;
}
a{
    text-decoration:none;
    color:white;
}

/* NAVBAR */
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    position:fixed;
    width:100%;
    top:0;
    z-index:1100;
    background:rgba(0,0,0,0.5);
    backdrop-filter:blur(12px);
    transition: 0.3s;
}
.logo{
    font-size:22px;
    font-weight:700;
    color:#ffb703;
}
nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}
nav ul li a{
    font-weight:500;
    transition: 0.3s;
}
nav ul li a:hover{
    color: #ffb703;
}

/* HAMBURGER ICON */
.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:6px;
    z-index:1200;
    padding: 5px;
}
.hamburger span{
    width:28px;
    height:3px;
    background:white;
    transition:0.4s ease;
    border-radius: 2px;
}

/* HAMBURGER TO 'X' ANIMATION */
.hamburger.active span:nth-child(1) { 
    transform: translateY(9px) rotate(45deg); 
}
.hamburger.active span:nth-child(2) { 
    opacity: 0; transform: translateX(-10px); 
}
.hamburger.active span:nth-child(3) { 
    transform: translateY(-9px) rotate(-45deg); 
}

/* MOBILE MENU DRAWER */
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:70%;
    max-width: 300px;
    height:100vh;
    background:rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(15px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap: 25px;
    z-index:1050;
    transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}
.mobile-menu.active{ 
    right:0; 
}
.mobile-menu a{ 
    font-size:22px; 
    font-weight:600; 
    transition: 0.3s; 
}
.mobile-menu a:hover{ 
    color: #ffb703; 
}

/* OVERLAY BLUR FOR BODY */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}
.menu-overlay.active { 
    opacity: 1; 
    visibility: visible; 
}

/* HERO */
.hero{
    height:100vh;
    width:100%;
    position:relative;
    overflow:hidden;
}
.hero video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}
.hero-overlay h1{
    font-size:65px;
    margin-bottom:20px;
    opacity:0;
    transition:1s;
}
.hero-overlay p{
    max-width:600px;
    margin-bottom:30px;
    opacity:0;
    transition:1s;
}
.btn{
    padding:15px 40px;
    border:none;
    border-radius:30px;
    background:linear-gradient(45deg,#ffb703,#ff7b00);
    color:white;
    font-weight:600;
    cursor:pointer;
    box-shadow:0 0 20px rgba(255,183,3,0.6);
    transition:0.3s;
}
.btn:hover{
    transform:scale(1.1);
    box-shadow:0 0 30px rgba(255,183,3,0.9);
}

/* SECTIONS */
section{
    padding:120px 8%;
}

/* MENU */
.menu-title{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
    opacity:0;
    transition:1s;
}
.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
.card{
    background:rgba(255,255,255,0.06);
    border-radius:20px;
    overflow:hidden;
    backdrop-filter:blur(12px);
    transition:0.4s;
    transform-style:preserve-3d;
    animation:float 4s ease-in-out infinite;
    opacity:0;
}
.card:hover{
    transform:rotateY(8deg) rotateX(6deg) scale(1.05);
}
.card img{
    width:100%;
    height:200px;
    object-fit:cover;
}
.card-content{
    padding:20px;
}
.price{
    color:#ffb703;
    font-weight:600;
    margin-top:10px;
}

/* PARALLAX */
.parallax{
    background:url('assets/images/parallax-background.jpg') center/cover fixed;
    height:400px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    opacity:0;
    transition:1s;
}
.parallax h2{
    font-size:50px;
    background:rgba(0,0,0,0.5);
    padding:20px 40px;
    border-radius:10px;
    color:#ffb703;
}

/* ABOUT */
.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}
.about img, .about div{
    opacity:0;
    transition:1s;
}
.about img{
    width:100%;
    border-radius:20px;
}

/* TESTIMONIALS */
.testimonials{
    text-align:center;
}
.review-grid{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}
.review{
    background:rgba(255,255,255,0.06);
    padding:25px;
    border-radius:15px;
    opacity:0;
    transition:1s;
}

/* CONTACT */
.contact form{
    max-width:500px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:30px;
}
.contact input,.contact textarea,.contact button{
    opacity:0;
    transition:1s;
}
.contact input,.contact textarea{
    padding:12px;
    border:none;
    border-radius:10px;
}

/* FOOTER */
.footer{
  text-align:center;
  padding:30px;
  background:#000;
  margin-top:40px;
  color:white;
}
.social-icons{
  margin:20px 0;
  display:flex;
  justify-content:center;
  gap:20px;
}
.social-icons a{
  width:45px;
  height:45px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  color:white;
  font-size:18px;
  transition:0.3s;
}
.social-icons a:hover{
  background:linear-gradient(45deg,#ffb703,#ff7b00);
  transform:translateY(-5px) scale(1.1);
  box-shadow:0 0 15px rgba(255,183,3,0.6);
}
.credit{
  font-size:14px;
}
.credit a{
  color:#ffb703;
  text-decoration:none;
  transition:0.3s;
}
.credit a:hover{
  text-shadow:0 0 8px #ffb703;
}

/* ANIMATIONS */
@keyframes float{0%{transform:translateY(0px);}50%{transform:translateY(-10px);}100%{transform:translateY(0px);}}

/* MOBILE */
@media(max-width:768px){
    nav ul{display:none;}
    .hamburger{display:flex;}
    .hero-overlay h1{font-size:36px;}
    .about{grid-template-columns:1fr;}
    .parallax h2 { font-size: 30px; }
}