/* ===== Global Styles ===== */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #FFD700, #FF6347); /* Gold to Tomato gradient */
    min-height: 100vh;
    color: #333; /* Dark text for better contrast */
}

h1 {
    animation: fadeIn 2s ease-in-out;
    color: #000;
}

/* ===== Header ===== */
/* ===== Header ===== */

    /* ===== Header Styling ===== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to right, #ffb347, #ffcc33);
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75em 1.5em;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      height: 80px;
      border-radius: 12px;
      transition: background 0.3s ease;
    }
    
    /* ===== Logo Styling ===== */
    .logo {
      display: flex;
      align-items: center;
      gap: 0.5em;
      font-size: 1.2em;
      font-weight: bold;
      font-family: 'Georgia', serif;
      color: white;
      text-decoration: none;
    }
    
    .logo img {
      height: 50px;
      width: 50px;
      border-radius: 50%;
    }
    
    /* ===== Hamburger Icon ===== */
    .hamburger {
      font-size: 1.8em;
      cursor: pointer;
      display: none;
    }
    
    /* ===== Navigation Menu ===== */
    .nav-menu {
      display: flex;
      gap: 1.5em;
    }
    
    .nav-menu a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
      color: #333;
      border-bottom: 2px solid #fff;
    }
    
    /* ===== Mobile Responsive ===== */
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }
    
      .nav-menu {
        position: absolute;
        top: 80px;
        right: -10px;
        background: #fff;
        color: #333;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        display: none;
        padding: 1em;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      }
    
      .nav-menu.active {
        display: flex;
      }
    
      .nav-menu a {
        color: #333;
        padding: 0.75em 1em;
        width: 100%;
        border-bottom: 1px solid #eee;
      }
    
      .nav-menu a:last-child {
        border-bottom: none;
      }
    }
/* ===== Push page down to make space for fixed header ===== */
body {
  padding-top: 70px; /* Adjust based on your header height */
}




/* ===== Section Generic ===== */
section {
    padding: 2em;
    text-align: center;
}

/* ===== About Section ===== */
/* #about {
    background: linear-gradient(135deg, #FFF8DC, #FFEFD5);
    padding: 3em 2em;
    margin: 2em auto;
    border-radius: 20px;
    max-width: 1000px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.5s ease-in-out;
}

#about h2 {
    color: #C04000;
    font-size: 2.5em;
    margin-bottom: 1.5em;
    font-family: 'Georgia', serif;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 2em;
}

.about-content img {
    max-width: 320px;
    border-radius: 20px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-content img:hover {
    transform: scale(1.05);
}

.about-text {
    max-width: 600px;
    text-align: left;
    font-size: 1.1em;
    color: #444;
    line-height: 1.8;
    font-family: 'Segoe UI', sans-serif;
}

.about-text p {
    margin-bottom: 1.2em;
}

.about-text blockquote {
    font-style: italic;
    color: #A0522D;
    margin-top: 2em;
    padding-left: 1em;
    border-left: 4px solid #FFA07A;
    font-size: 1.3em;
    font-family: 'Brush Script MT', cursive;
    text-align: left;
    background: #fff6ee;
    border-radius: 8px;
    padding: 0.8em 1em;
} */

/* ignore above */




#about {
  background: #fff8f8;
  padding: 60px 20px;
}

.section-heading {
  text-align: center;
  font-size: 2rem;
  color: #d81b60;
  margin-bottom: 30px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.about-text blockquote {
  margin-top: 20px;
  font-style: italic;
  color: #e91e63;
  border-left: 4px solid #e91e63;
  padding-left: 12px;
}

.explore-btn {
  display: inline-block;
  margin-top: 20px;
  background: #d81b60;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background: #ad1457;
}

.about-content img {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


/* stats */

.section-subheading {
  text-align: center;
  font-size: 1.25rem;
  color: #888;
  margin-bottom: 30px;
}

.stats-counter {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.stat {
  font-size: 1.5rem;
  color: #d81b60;
}

.stat p {
  font-size: 1rem;
  color: #444;
  margin-top: 8px;
}








/* ===== Menu Section ===== */

.menu-note {
    font-style: italic;
    color: #666;
    margin-bottom: 1em;
}

/* Section and Heading */
#menu-section {
    padding: 2em 1em;
    background-color: #fff2e6;
  }
  
  .menu-heading {
    text-align: center;
    font-size: 2em;
    font-family: 'Georgia', serif;
    color: #C04000;
    margin-bottom: 1em;
  }
  
  /* Scrollable Frame */
  .menu-frame {
    width: 75%;
    max-width: 400px;
    margin: 0 auto;
    height: 80vh;
    overflow-y: auto;
    padding-right: 6px;
    border-radius: 12px;
    background: #fff7f2;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Scrollbar Styling (optional) */
  .menu-frame::-webkit-scrollbar {
    width: 6px;
  }
  .menu-frame::-webkit-scrollbar-thumb {
    background-color: #e67e22;
    border-radius: 3px;
  }
  
  /* Menu Card */
  .menu-card {
    display: flex;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    gap: 1em;
    align-items: center;
  }
  
  /* Image */
  .menu-card-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    flex-shrink: 0;
  }
  
  /* Card Content */
  .menu-card-content {
    flex: 1;
    text-align: left;
  }
  
  .menu-title {
    color: #C04000;
    font-weight: 700;
    margin: 0;
    font-size: 1.1em;
  }
  
  .menu-desc {
    color: #444;
    margin: 4px 0;
  }
  
  .menu-price {
    font-weight: bold;
    margin: 6px 0;
  }
  
  /* Inputs */
  .menu-select,
  .quantity-input {
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  .menu-select {
    width: 100%;
    max-width: 120px;
    margin: 6px 0;
  }
  
  .toggle-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95em;
    margin: 6px 0;
  }
  
  .quantity-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .quantity-input {
    width: 60px;
    text-align: center;
  }
  
  /* Button */
  .order-btn {
    background-color: #28c76f;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
  }
  
  .order-btn:hover {
    background-color: #22b765;
  }
  
  /* Responsive for Mobile */
  @media (max-width: 600px) {
    .menu-frame {
      width: 90%;
      height: 75vh;
      padding-right: 8px;
    }
  
    .menu-card {
      flex-direction: row;
      align-items: flex-start;
      gap: 0.8rem;
      padding: 14px;
      align-items: center;
    }
  
    .menu-card-img {
      width: 100px;
      height: 140px;
      object-fit: cover;
      border-radius: 16px;
      
    }
  
    .menu-title {
      font-size: 1.1em;
    }
  
    .quantity-wrap {
      gap: 0.5rem;
    }
  
    .order-btn {
      font-size: 0.85rem;
      margin-top: 8px;
    }
  }


  /* whatsapp popup Model */


  
.modal {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex; justify-content: center; align-items: center;
    z-index: 999;
  }
  .modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 90%; max-width: 400px;
    box-shadow: 0 0 10px #000;
  }
  .modal-content input, .modal-content textarea {
    width: 100%; margin: 10px 0;
    padding: 8px; border-radius: 8px; border: 1px solid #ccc;
  }
  .hidden { display: none; }
  
  

  

  /* === Gallery Images === */

  /* === Gallery Section === */



  #gallery {
    background: linear-gradient(to right, #fff1e6, #ffe5d0);
  }

  .gallery-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-wrapper {
    position: relative;
  }
  

.gallery-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1em;
  }
  
  .gallery-img {
    flex: 0 0 auto;
    width: 240px;
    height: 320px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    scroll-snap-align: center;
  }
  
  .gallery-img:hover {
    transform: scale(1.05);
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FFD700;
    border: none;
    padding: 0.5em 0.8em;
    font-size: 1.8em;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
  }
  
  .carousel-btn:hover {
    background: #FFA500;
  }
  
  .carousel-btn.left {
    left: 0;
  }
  
  .carousel-btn.right {
    right: 0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .carousel-btn {
      font-size: 1.2em;
      padding: 0.3em 0.5em;
    }
  
    .gallery-img {
      width: 240px;
      height: 320px;
    }
  }


  /* ===== Lightbox ===== */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
  }
  
  .lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  }
  
  .close-lightbox {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 2rem;
    color: white;
    background: #ff6347;
    border-radius: 50%;
    padding: 0.2em 0.4em;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }


  
  /* contact section */

  #contact {
    padding: 3em 2em;
    background: #fffaf0;
    border-radius: 12px;
    max-width: 1000px;
    margin: 2em auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }
  
  #contact h2 {
    text-align: center;
    color: #C04000;
    font-family: 'Georgia', serif;
    font-size: 2.2em;
    margin-bottom: 1.5em;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
  }
  
  .contact-details {
    flex: 1;
    min-width: 260px;
    font-size: 1.1em;
    color: #444;
  }
  
  .contact-details p {
    margin: 0.6em 0;
  }
  
  .contact-details a {
    color: #D2691E;
    text-decoration: none;
  }
  
  .contact-details a:hover {
    text-decoration: underline;
  }
  
  .contact-form {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.8em;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .contact-form button {
    background-color: #D2691E;
    color: white;
    border: none;
    padding: 0.9em;
    font-size: 1em;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #A0522D;
  }
  
  /* social media */

#social-media {
    background: #fff8f0;
    padding: 2em 1em;
    text-align: center;
    border-top: 2px dashed #FFD700;
}

#social-media h2 {
    font-size: 1.8em;
    color: #D2691E;
    margin-bottom: 1em;
    font-family: 'Georgia', serif;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5em;
}

.social-icons a {
    font-size: 2em;
    color: #fff;
    background: #D2691E;
    padding: 0.6em;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    background: #FFD700;
    color: #D2691E;
}

/* Optional: Color customization per platform */
.instagram { background: #C13584; }
.youtube { background: #FF0000; }
.facebook { background: #3b5998; }



/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 80px;
    right: 20px;
    z-index: 100;
    cursor: pointer;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}




/* FAQ */

.accordion-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #fce4ec;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #d81b60;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .accordion-question:hover {
    background: #f8bbd0;
  }
  
  .accordion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }
  
  .accordion-question.active .accordion-icon {
    transform: rotate(180deg); /* Flips the arrow up */
  }
  
  .accordion-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }
  
  .accordion-answer p {
    margin: 15px 0;
    font-size: 0.95rem;
    color: #444;
  }


  /* pop up birthday */

  /* .birthday-theme {
    background: url("images/birthday_bg.gif") repeat center/cover;
  }
  
  .birthday-banner {
    background: #ffccf2;
    color: #c2185b;
    padding: 1em;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    animation: fadeIn 0.5s ease-out;
  } */
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  
  


/* ===== Footer ===== */
footer {
    background: #333;
    color: #FFD700;
    text-align: center;
    padding: 1em 0;
}

/* ===== Animation ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



/* SEO-friendly hidden class */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}