/* ===============================
   GLOBAL RESETS
================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #f8f8f8;
  color: #111;
  line-height: 1.5;
}

/* ===============================
   CONTAINER
================================*/
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.2rem;
}

/* ===============================
   HEADER
================================*/
.site-header {
  background: #ffffffd9;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.8rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.nav-logo {
  width: 58px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.25));
  transition: transform .3s ease;
}

.brand:hover .nav-logo {
  transform: scale(1.1);
}


.brand-text span {
  font-size: 0.8rem;
  color: #444;
}

.main-nav {
  display: flex;
  gap: 0.8rem;
}

.nav-link {
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 10px;
  color: #222;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-link:hover {
  background: #7a9b0a15;
}

.nav-link.active {
  background: #7a9b0a;
  color: white;
}

/* ===============================
   HERO SECTION
================================*/
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* ⭐ IMAGE TAG FROM USER */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Smoother + more premium parallax scaling */
  transform: scale(1.08);
  transition: transform 1.3s ease-out, filter 1s ease-out;

  /* Modern color enhancement */
  filter: brightness(1) contrast(1.08) saturate(1.18) sharpen(0.6);
  
  /* Slight softening to remove harsh tones */
  image-rendering: auto;
   /* Clearer, brighter, more vibrant */
  transform: scale(1.06);
  transition: transform 1.3s ease-out, filter 1s ease-out;

  filter: brightness(1.22) contrast(1.08) saturate(1.20);

}


/* Zoom animation on hover */
.hero-section:hover .hero-img {
  transform: scale(1.16);
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.7)
  );
  backdrop-filter: blur(4px);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  top: 43%;
  transform: translateY(-50%);
}

.title {
  font-size: 3.3rem;
  color: white;
  font-family: "Playfair Display", serif;
  text-shadow: 0 6px 25px rgba(0,0,0,0.5);
}

.subtitle {
  color: #eaeaea;
  font-size: 1.3rem;
  margin-top: 0.5rem;
  margin-bottom: 1.6rem;
  text-shadow: 0 4px 18px rgba(0,0,0,0.6);
}

/* CTA Button */
.btn {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  background: linear-gradient(90deg, #7a9b0a, #b33);
  color: white;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-6px) scale(1.03);
  opacity: 0.95;
}

/* ===============================
   FLOATING ACTION BUTTON
================================*/
.fab {
  position: fixed;
  right: 25px;
  bottom: 25px;
  padding: 1rem 1.3rem;
  background: #7a9b0a;
  color: white;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  z-index: 999;
  transition: 0.3s ease;
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

.fab:hover {
  transform: scale(1.09);
}

/* ===============================
   ANIMATIONS
================================*/
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s forwards 0.4s;
}

.fade-in-delay {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s forwards 0.8s;
}

.fade-in-btn {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s forwards 1.1s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   END OF HOME DESIGN
================================*/

/* =============================
   ABOUT PAGE (PROFESSIONAL)
   ============================ */

/* --- base fonts and container (if not present globally) --- */
:root {
  --brand: #4a4a4a;
  --accent: #ff6600;
  --glass: rgba(255,255,255,0.14);
  --glass-strong: rgba(255,255,255,0.22);
  --max-width: 1200px;
  --container-padding: 20px;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #222;
  margin: 0;
  background: #f7f7f7;
}

/* small container helper */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
}

/* header basics  */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--brand);
}

.nav-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.brand-text strong { font-size: 1.05rem; display:block; }
.brand-text span { font-size: 0.85rem; color:#666; }

/* nav */
.main-nav { display:flex; gap:1.4rem; align-items:center; }
.main-nav .nav-link { color:#111; text-decoration:none; font-weight:600; padding:6px 4px; }
.main-nav .nav-link.active { color:var(--accent); }

/* mobile toggle (no heavy JS here) */
.nav-toggle { display:none; background:transparent; border:0; cursor:pointer; }

/* ============================
   ABOUT HERO
   ============================ */
.about-hero {
  position: relative;
  padding: 4rem 0;
  min-height: 92vh;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.88) saturate(1.12) contrast(1.06);
  transform: scale(1.12);
  transition: transform 1.6s ease;
  will-change: transform;
}
.about-hero:hover .about-hero-bg { transform: scale(1.18); }

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.62));
  pointer-events: none;
}

/* content layout */
.about-hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0;
}

/* glass card */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 1.6rem;
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

/* left collage */
.food-collage {
  position: relative;
  height: 360px;
  width: 360px;
  margin-bottom: 1.6rem;
}

.circle-img {
  position: absolute;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 6px solid rgba(255,255,255,0.72);
  box-shadow: 0 10px 25px rgba(0,0,0,0.32);
  animation: slowFloat 6s infinite ease-in-out;
}
.circle-1 { top: 0; left: 96px; animation-delay: .2s; }
.circle-2 { bottom: 0; left: 0; animation-delay: .6s; }
.circle-3 { bottom: 0; right: 0; animation-delay: .9s; }

@keyframes slowFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* about right */
.about-title { font-size: 2.2rem; margin:0 0 1rem 0; color:#fff; }

/* small button */
.btn.about-btn {
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:10px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  margin-top:12px;
  box-shadow: 0 10px 22px rgba(255,102,0,0.14);
}

/* ============================
   INSTAGRAM VIDEO SECTION (PRO)
   ============================ */

.about-video-section {
  margin: 4rem auto 6rem auto;
  text-align: center;
  max-width: 1100px;
  padding: 2.2rem;
  box-sizing: border-box;
}

/* big frame */
.about-video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.25));
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  padding: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* background image layer */
.about-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/IG.jpeg') center/cover no-repeat;
  background-size: cover;
  filter: brightness(0.68) saturate(1.05) contrast(1.03);
  transform: scale(1.03);
  transition: transform 1.6s ease, filter 0.8s ease;
  z-index: 0;
}

/* soft overlay to keep embed legible */
.about-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.32), rgba(0,0,0,0.52));
  z-index: 1;
}

/* actual small glass container for the embed (keeps it compact) */
.about-video-container {
  position: relative;
  z-index: 3;
  max-width: 520px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.09);
  padding: 12px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

/* instagram embed adjustments */
.instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  border-radius: 10px;
  overflow: hidden;
  background: transparent !important;
}

/* small headline over frame (optional) */
.about-video-section .sec-title {
  color: #0e0e0e;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  position: relative;
  z-index: 4;
}

/* subtle hover zoom on background */
.about-video-frame:hover::before {
  transform: scale(1.06);
  filter: brightness(0.75) saturate(1.08);
}

/* ============================
   SERVICES
   ============================ */
.services-section { padding: 5rem 0; text-align:center; }
.sec-title { font-size: 2.3rem; margin-bottom: 2rem;
   color: #222; font-family: "Playfair Display", serif; }

.services-grid { display:grid; grid-template-columns:
   repeat(4,1fr); gap:1.4rem; max-width:1100px; margin:0 auto; }

.service-card {
  padding: 1.5rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.06);
  transition: .28s ease;
}

.service-card:hover { transform: translateY(-8px);
   box-shadow: 0 14px 34px rgba(0,0,0,0.12);
   }

/* fade-in scroll animation */
.fade-in-section { opacity:0; transform: 
  translateY(30px); transition: all 0.9s cubic-bezier(.2,.9,.2,1); }
.fade-in-section.show { opacity:1; transform: translateY(0); }

/* FOOTER */
.site-footer { padding: 2rem 0; text-align:center;
   color:#666; background:transparent; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-hero-content { grid-template-columns: 1fr; padding-top: 2rem; }
  .food-collage { margin: 0 auto 1.2rem auto; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .about-video-container { max-width: 440px; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .main-nav { display:none; }
  .nav-toggle { display:block; }
  .brand-text strong { font-size: 0.98rem; }
  .brand-text span { font-size: 0.78rem; color:#666; }
  .about-title { font-size: 1.6rem; }
  .about-hero { min-height: 70vh; padding: 2.4rem 0; }
  .about-video-container { max-width: 360px; padding:10px; }
}



/* ===============================
        ORDER PAGE
================================*/

.order-hero {
  position: relative;
  height: 45vh;
  background: url('images/stock3.webp') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.order-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(3px);
}

.order-hero h1 {
  position: relative;
  font-size: 2.8rem;
  z-index: 2;
}

.order-hero p {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
}

/* Search Bar */
.order-search {
  margin: 2rem 0;
}
.order-search input {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

/* Category Buttons */
.order-categories {
  text-align: center;
  margin-bottom: 1.8rem;
}

.cat-btn {
  padding: 0.7rem 1.4rem;
  margin: 0.3rem;
  border: none;
  border-radius: 30px;
  background: #e0e0e0;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.cat-btn.active,
.cat-btn:hover {
  background: #7a9b0a;
  color: white;
}

/* Food Grid */
.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 1.4rem;
}

.order-item {
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.order-item:hover {
  transform: translateY(-8px);
}

.order-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

/* Cart Panel */
.cart-panel {
  position: fixed;
  right: -350px;
  top: 0;
  width: 320px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 20px rgba(0,0,0,0.15);
  padding: 1.4rem;
  transition: 0.4s ease;
  z-index: 999;
}

.cart-panel.open {
  right: 0;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: #7a9b0a;
  border: none;
  color: white;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
}


/* ================================
        MENU PAGE
================================*/

.menu-hero {
  position: relative;
  height: 45vh;
  background: url('images/stock3.webp') center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  text-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
}

.menu-hero h1 {
  position: relative;
  font-size: 3rem;
  margin-top: 20px;
}

.menu-page {
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.menu-section-title {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
  color: #222;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1.3rem;
}

.menu-item {
  display: flex;
  align-items: center;
  background: white;
  padding: 0.9rem;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(0,0,0,0.06);
  transition: .3s;
}

.menu-item:hover {
  transform: scale(1.03);
}

.menu-item img {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 1rem;
}

.price {
  font-weight: 700;
  color: #7a9b0a;
  margin-top: 4px;
}

/* ================================
      MENU PAGE ANIMATIONS
================================*/

.menu-hidden {
  opacity: 0;
  transform: translateY(25px) scale(0.97);
  transition: all 0.6s ease, transform 0.6s ease;
}

.menu-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* ================================
        CATERING PAGE
================================*/

.catering-hero {
  position: relative;
  height: 45vh;
  background: url('images/stock3.webp') center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.catering-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
}

.catering-hero h1 {
  position: relative;
  font-size: 3rem;
}

.catering-services {
  margin-top: 4rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
}

.white {
  color: white !important;
}

.cater-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1.6rem;
}

.cater-card {
  background: white;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: .3s;
}

.cater-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.cater-card:hover {
  transform: translateY(-8px);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  transition: .3s;
}

.gallery-img:hover {
  transform: scale(1.04);
}

/* FORM SECTION */
.catering-form-section {
  background: url('images/Form.jpeg') center/cover fixed;
  padding: 4rem 0;
  position: relative;
}

.catering-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.catering-form {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: auto;
  background: rgba(255,255,255,0.15);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  margin-bottom: .4rem;
  color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

.form-btn {
  width: 100%;
  background: linear-gradient(90deg, #7a9b0a, #b33);
  color: white;
  font-weight: bold;
  border-radius: 30px;
  margin-top: 1rem;
  transition: .3s;
}

.form-btn:hover {
  transform: scale(1.05);
}

.fade-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: .7s ease;
}

.fade-show {
  opacity: 1;
  transform: translateY(0);
}

/* SUCCESS POPUP */
.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup-box {
  background: white;
  padding: 2rem;
  border-radius: 18px;
  max-width: 380px;
  text-align: center;
  animation: popIn .4s ease;
}

.popup-box h2 {
  margin-bottom: 1rem;
  color: #7a9b0a;
}

.close-popup {
  margin-top: 1rem;
  background: #7a9b0a;
  color: white;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  cursor: pointer;
}

@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


/* ================================
        CONTACT PAGE
================================*/

/* HERO SECTION */
.contact-hero {
  background: url('images/stock3.webp') center/cover fixed;
  padding: 6rem 0;
  text-align: center;
  color: #fff;
  text-shadow: 0 8px 25px rgba(0,0,0,0.8);
  position: relative;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.contact-hero h1 {
  position: relative;
  font-size: 3.4rem;
  font-weight: 700;
  animation: fadeInDown 1s ease-out;
}

.contact-hero p {
  position: relative;
  font-size: 1.2rem;
  margin-top: 12px;
  opacity: 0.95;
  animation: fadeInUp 1.1s ease-out;
}


/* CONTACT INFORMATION GRID */
.contact-info {
  width: 90%;
  max-width: 1100px;
  margin: 4rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}


/* CONTACT CARDS */
.contact-card {
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  border-left: 6px solid #ff6600;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
}

.contact-card a {
  color: #ff6600;
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}


/* CONTACT FORM SECTION */
.contact-form-section {
  background: url('images/Contact.jpeg') center/cover fixed;
  padding: 5rem 0;
  position: relative;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.contact-form {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: auto;
  background: rgba(255,255,255,0.12);
  padding: 2.8rem;
  border-radius: 22px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.45);
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.25);
  color: #fff;
  margin-top: 0.4rem;
}

.btn.form-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: #ff6600;
  color: #fff;
  font-size: 1.1rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: .3s;
}

.btn.form-btn:hover {
  background: #e05500;
  transform: translateY(-3px);
}


/* ANIMATIONS */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-35px); }
  to { opacity: 1; transform: translateY(0); }
}

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


/* ================================
       HAMBURGER NAV STYLES
=================================*/

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #222;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Toggle animation */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffffee;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    transition: max-height 0.4s ease;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
  }

  .main-nav.open {
    max-height: 500px; /* enough to show all links */
  }

  .nav-link {
    padding: 1rem;
    width: 100%;
    text-align: center;
  }
}

/* Hide menu on mobile initially */
@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: white;
    flex-direction: column;
    padding-top: 5rem;
    gap: 1rem;
    transition: right 0.3s ease;
    z-index: 999;
  }

  /* Show menu when open */
  .main-nav.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
  }

  .nav-toggle span {
    height: 3px;
    width: 25px;
    background: #222;
    border-radius: 3px;
    display: block;
  }
}
