* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: #081b12;
    color: #f6f1e9;
    overflow-x: hidden;
    position: relative;
  }
  
  /* BACKGROUND EFFECTS */
  
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
      radial-gradient(circle at top left, rgba(0,255,100,0.08), transparent 25%),
      radial-gradient(circle at bottom right, rgba(255,0,0,0.08), transparent 25%);
    z-index: -3;
  }
  
  .bg-overlay {
    position: fixed;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
    z-index: -2;
  }
  
  .floating-leaves::before,
  .floating-leaves::after {
    content: "";
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,255,100,0.08), transparent 70%);
    filter: blur(50px);
    z-index: -1;
    animation: floatGlow 8s ease-in-out infinite alternate;
  }
  
  .floating-leaves::before {
    top: 10%;
    left: -100px;
  }
  
  .floating-leaves::after {
    bottom: 10%;
    right: -100px;
    animation-delay: 2s;
  }
  
  /* NAVBAR */
  
  .navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: fixed;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  
  .logo {
    width: 120px;
    transition: 0.4s ease;
  }
  
  .logo:hover {
    transform: scale(1.05) rotate(-2deg);
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #d4af37;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  /* HERO SECTION */
  
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 8%;
    text-align: center;
    position: relative;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212,175,55,0.08), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }
  
  .hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
  }
  
  .luxury-tag {
    color: #d4af37;
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  .hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
  }
  
  .hero-subtext {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,255,100,0.15), transparent 70%);
    filter: blur(50px);
    z-index: 0;
  }
  
  /* BUTTONS */
  
  .primary-btn,
  .secondary-btn {
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s ease;
    font-weight: 500;
  }
  
  .primary-btn {
    background: linear-gradient(135deg, #d4af37, #9f7723);
    color: black;
    animation: pulse 4s infinite;
  }
  
  .secondary-btn {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
  }
  
  .primary-btn:hover,
  .secondary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    animation: none;
  }
  
  /* SECTIONS */
  
  .section {
    padding: 120px 8%;
    position: relative;
    z-index: 2;
  }
  
  .section-title-wrap {
    text-align: center;
    margin-bottom: 70px;
  }
  
  .section-tag {
    color: #d4af37;
    letter-spacing: 4px;
    font-size: 13px;
  }
  
  .section h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-top: 15px;
  }
  
  /* ABOUT */
  
  .about-grid,
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
  }
  
  .glass-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 40px;
    line-height: 1.9;
    transition: 0.4s ease;
    box-shadow:
      0 10px 30px rgba(0,0,0,0.35),
      inset 0 1px 1px rgba(255,255,255,0.03);
  }
  
  .glass-card:hover {
    transform: translateY(-8px);
  }
  
  .glass-card p {
    color: rgba(255,255,255,0.78);
  }
  
  .about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
  }
  
  /* MENU */
  
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .menu-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 35px;
    transition: 0.4s ease;
    box-shadow:
      0 10px 30px rgba(0,0,0,0.35),
      inset 0 1px 1px rgba(255,255,255,0.03);
  }
  
  .menu-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(0,255,100,0.08);
  }
  
  .menu-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #d4af37;
  }
  
  .menu-card p {
    color: rgba(255,255,255,0.78);
  }
  
  /* ORDER SECTION */
  
  .order-section {
    padding: 50px 8% 120px;
  }
  
  .order-card {
    background: linear-gradient(
      135deg,
      rgba(0,255,100,0.1),
      rgba(255,0,0,0.1)
    );
    border: 1px solid rgba(255,255,255,0.08);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow:
      0 10px 30px rgba(0,0,0,0.35),
      inset 0 1px 1px rgba(255,255,255,0.03);
  }
  
  .order-card h2 {
    font-family: 'Cinzel', serif;
    margin-bottom: 20px;
    font-size: 2.3rem;
  }
  
  .order-card p {
    margin-bottom: 30px;
    color: rgba(255,255,255,0.78);
  }
  
  .disabled-btn {
    pointer-events: none;
    opacity: 0.7;
  }
  
  /* CONTACT */
  
  .contact-card h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #d4af37;
  }
  
  .contact-buttons {
    margin-top: 30px;
  }
  
  .contact-buttons .primary-btn {
    display: inline-block;
  }
  
  .map-wrap iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 30px;
  }
  
  /* FOOTER */
  
  footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 2;
  }
  
  /* ANIMATIONS */
  
  .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
  }
  
  .fade-up.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  @keyframes floatGlow {
    from {
      transform: translateY(0px) translateX(0px);
    }
  
    to {
      transform: translateY(-30px) translateX(20px);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.7;
    }
  
    50% {
      transform: scale(1.05);
      opacity: 1;
    }
  
    100% {
      transform: scale(1);
      opacity: 0.7;
    }
  }
  
  /* SCROLLBAR */
  
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #081b12;
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(#2E7D32, #8B1E1E);
    border-radius: 20px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#3fa046, #b32626);
  }
  
  /* TABLET */
  
  @media(max-width: 992px) {
  
    .hero h1 {
      font-size: 4rem;
    }
  
    .menu-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .about-grid,
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* MOBILE */
  
  @media(max-width: 768px) {
  
    .navbar {
      flex-direction: column;
      gap: 20px;
    }
  
    .nav-links {
      gap: 20px;
    }
  
    .hero h1 {
      font-size: 3rem;
    }
  
    .section h2 {
      font-size: 2.2rem;
    }
  
    .menu-grid {
      grid-template-columns: 1fr;
    }
  
    .order-card {
      padding: 40px 25px;
    }
  
    .glass-card {
      padding: 30px;
    }
  }
  
  /* SMALL MOBILE */
  
  @media(max-width: 480px) {
  
    .hero {
      padding-top: 180px;
    }
  
    .hero h1 {
      font-size: 2.4rem;
      line-height: 1.2;
    }
  
    .hero-subtext {
      font-size: 0.95rem;
    }
  
    .navbar {
      padding: 15px 5%;
    }
  
    .logo {
      width: 95px;
    }
  
    .section {
      padding: 90px 6%;
    }
  
    .glass-card,
    .menu-card {
      padding: 25px;
    }
  
    .primary-btn,
    .secondary-btn {
      width: 100%;
      text-align: center;
    }
  
    .hero-buttons {
      flex-direction: column;
    }
  
    .map-wrap iframe {
      height: 320px;
    }
  }
  .credit-text {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
  }
  
  .credit-text span {
    color: #d4af37;
    font-weight: 600;
  }