/* -------------------- */
/* 🌐 GLOBAL RESET & BASE */
/* -------------------- */
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.3px;
  background-color: #fff8f0;
  color: #4a4a4a;
}

/* -------------------- */
/* 🔝 NAVIGATION BAR    */
/* -------------------- */
.navbar {
  background-color: #1E4620;
  padding: 0 20px;
  height: 110px;
  display: flex;
  align-items: center;
  z-index: 1000;
  overflow: visible;
  position: sticky;  
  top: 0; 
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.logo {
  height: 120px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.6));
  margin-top: 5px;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: background-color 0.3s ease;
}

.nav-links a:hover {
  background-color: #B70100;
  color: white;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* Sidebar styles */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px;
  left: auto;
  width: 250px;
  height: 100%;
  background-color: #004d00;
  color: white;
  padding: 60px 20px;
  box-shadow: -2px 0 5px rgba(0,0,0,0.5);
  transition: right 0.3s ease;
  z-index: 1100;
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu li {
  margin: 20px 0;
  border-bottom: 1px solid white;
  padding-bottom: 10px;
}

.side-menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.side-menu.show {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  cursor: pointer;
}

/* Backdrop */
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}

.backdrop.visible {
  display: block;
}

/* -------------------- */
/* 🖼️ HERO SECTION      */
/* -------------------- */

.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);        
  overflow: hidden;
}

.hero-section .hero-image {
  position: absolute;   
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;           
}

.hero-text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px 40px; 
  border-radius: 12px;
  text-align: center;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-text {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 600;
  color: white;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
  margin: 0;
  text-align: center;
  white-space: nowrap; 
}

.view-menu-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #c8102e; 
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.view-menu-btn:hover {
  background-color: #a50d25;
}

.view-menu-btn:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* -------------------- */
/* 🎨 FEATURED IMAGE    */
/* -------------------- */
.featured-image img {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* -------------------- */
/* 🏠 GENERAL HEADER    */
/* -------------------- */

.welcome-heading {
  font-family: 'Playfair Display', serif; 
  font-style: normal;                     
  font-weight: 700;
  font-size: 3rem;
  color: #1E4620;                         
  margin: 0.5rem 0;
  letter-spacing: 0.5px;
  padding-top: 60px; 
}

.icon-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.3rem 0 0.6rem;
}
.icon-divider::before,
.icon-divider::after {
  content: "";
  flex: 1;
  height: 0.5px;
  background: #1E4620;
  margin: 0 0.5rem;
}
.icon-divider i {
  color: #D61605;  /* pepper-red accent */
  font-size: 1.2rem;
}

/* -------------------- */
/* 🏠 ABOUT US SECTION  */
/* -------------------- */

.about-us-section {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  padding-bottom: 60px; 
}

.column {
  flex: 1 1 50%;
}

.column.right img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.column.left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(-80px); 
  padding-right: 20px; 
  align-items: center;
  text-align: center;
  margin-bottom: -65px; 
}

.section-heading {
  font-size: 1.8rem;
}

/* Container for the policy pills */
.about-extra-pill-container {
  margin-top: 1.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Individual pill styles */
.about-pill {
  display: inline-block;
  background-color: #1E4620;  
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease-in-out;
}

.about-pill:hover {
  background-color: #15401a;  /* slightly darker green */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* bolder shadow */
}

/* -------------------- */
/* 🖼️ GALLERY SECTION   */
/* -------------------- */

.gallery-section {
  padding: 50px 20px 40px !important; 
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Always 4 on desktop */
  gap: 20px;
  padding: 0 10px;
}

.gallery-container img {
  width: 100%;
  height: 200px;              
  object-fit: cover;         
  border-radius: 10px;       
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background-color: transparent; 
}

/* -------------------- */
/* 💡 LIGHTBOX POPUP    */
/* -------------------- */

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-img {
  width: auto;
  height: 80vh; 
  max-width: 90vw;
  object-fit: contain; 
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: white;
  cursor: pointer;
  transform: translateY(-50%);
  user-select: none;
  padding: 0 20px;
}

.lightbox .prev { left: 0; }
.lightbox .next { right: 0; }


/* -------------------- */
/* 📞 CONTACT FOOTER    */
/* -------------------- */
#contact-us {
  text-align: center;
  padding: 50px 15px 30px;  /* top | left/right | bottom */
  font-size: 1.2rem;
  line-height: 1.6;
}

.contact-address {
  margin-bottom: 10px;
}

.contact-phone a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

.contact-phone a:hover {
  color: #c93b2c;
}

.contact-footer {
  background-color: #1E4620;
  color: white;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px 30px;
}

.footer-logo {
  height: 120px;
  max-width: 100%;
}

.footer-tagline {
  color: white;
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.4;
  max-width: 300px;
}

.footer-column {
  flex: 1;
  padding: 20px;
  min-width: 250px;
}

.footer-column.left {
  text-align: left;
  font-size: 1.1rem;  
  line-height: 1.6;
}

.footer-column.center {
  text-align: center;
}

.footer-column.right {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1.2;               
  max-width: 420px;        
} 

.footer-column h3,
.footer-column h4 {
  margin-bottom: 10px;
  font-size: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 6px;
}

.footer-column.right ul li {
  font-size: 18px;
  font-weight: 700; 
}

.footer-column.right .closed-day {
  background-color: #ff4c4c;
  color: white;
  padding: 6px 10px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin-top: 8px;
}

.footer-column.right h4 {
  border-bottom: 3px solid #B70100;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

/* Social Media Icons */
.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 32px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #B70100;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ffffff33;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-links a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* -------------------- */
/* 🌱 MAP CONTAINER     */
/* -------------------- */
.map-container {
  width: 100vw;
  max-width: none;
  height: 400px;
  margin: 20px 0 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ----------------- */
/*  UTILITY STYLES   */
/* ----------------- */

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d61605;
  margin: 60px auto 30px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

/* -------------------- */
/* 🍽️ MENU PAGE        */
/* -------------------- */
h1 {
  font-size: 2.5rem;
  color: #B70100;
  text-align: center;
  margin: 40px auto 20px auto;
}

.menu-hero {
  position: relative;   
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  overflow: hidden;
  z-index: 0;
}

.menu-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 600;
  color: white;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
  margin: 0;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; 
}

.menu-nav {
  display: flex;
  justify-content: center;
  background-color: white;
  padding: 0; 
  margin: 0;  
  width: 100vw; 
  border-top: none;
  border-bottom: 1px solid #ddd;
}

.menu-nav .tab-nav {
  cursor: pointer;
  text-decoration: none;
  color: #B70100;
  font-weight: bold;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1;
}

section:not(.hero-section) {
  padding: 40px 40px;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  color: #d61605;
}

.menu-category h2.section-title {
  text-align: center;      
  margin: 0 0 1rem;      
  font-size: 2rem;
  font-weight: 700;
  color: #d61605;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

.section-note {
  font-style: italic;
  color: #2E7D32;
  margin-top: -0.3rem;   
  margin-bottom: 0.5rem; 
  display: block;
  font-size: 1rem;
  padding-left: 4px;
  text-align: center;
}

/*full-width underline */
.section-lines {
  margin: 1rem 0 2rem;     /* space above/below the line */
}

.green-line {
  width: 100%;             
  height: 2px;             /* adjust thickness here */
  background-color: #1E4620;
}

hr {
  all: unset;
}

.menu-category#food {
  display: block; 
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  justify-content: flex-start;
  margin-top: 20px;
}

.menu-item {
  flex: 0 1 calc(33.333% - 40px);
  box-sizing: border-box;
  margin-bottom: 40px;
}

.menu-item h3 {
  font-weight: bold;
  margin-bottom: 5px;
  color: #000
}

.menu-item p {
  margin: 4px 0;
  line-height: 1.4;
}

.menu-item .description {
  margin-bottom: 20px;
  color: #2E7D32;
  font-style: italic;
}

.menu-item .price {
  margin-top: 20px;
  font-weight: bold;
  color: #000;
}

.price-options {
  margin-top: 8px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding-left: 8px;
}

.price-row span:first-child {
  color: #2E7D32;
  font-weight: bold;
}

.price-row span:last-child {
  color: #000;
  font-weight: bold;
  font-size: 1rem;
}

.menu-item .price,
.price-row span:last-child {
  font-size: 1rem; 
}

.tab-nav {
  flex: 1;
  text-align: center;
  padding: 18px 0;
  font-weight: bold;
  font-size: 18px;
  background-color: white;
  color: darkred;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tab-nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 3px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.tab-nav.active-tab::after {
  background-color: #B70100; /* red underline */
}

.tab-nav:hover {
  color: white;                 
  background-color: #b22222;   
}

.tab-nav.active-tab {
  background-color: #b22222; 
  color: white;
}

@media (max-width: 768px) {
  .menu-item {
    flex: 1 1 100%;
  }

  .menu-nav {
    font-size: 1rem;
    margin: 20px auto;
  }

  h1 {
    font-size: 2rem;
    margin-top: 30px;
  }

  .menu-items {
    gap: 20px;
  }
}

/* -------------------- */
/* 📦 MISC COMPONENTS   */
/* -------------------- */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  min-width: 160px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.price-options {
  margin-top: 0.5rem;
  max-width: 250px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

#backToTop {
  position: fixed;
  bottom: 80px;
  right: 30px;
  z-index: 999;
  background-color: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.back-to-top svg {
  width: 15px;
  height: 15px;
  stroke: #ffc107;
  stroke-width: 10; /* Make arrow thicker */
  fill: none;
}

#backToTop:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* -------------------- */
/* 📱 RESPONSIVENESS    */
/* -------------------- */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 100px; 
  }
}

@media (max-width: 480px) {
  .gallery-heading {
    margin-top: 0px !important;
    margin-bottom: 15px;
  }

  .gallery-section {
    padding-top: 0 !important;
    margin-top: 0px;
  }
}

@media (max-width: 768px) {
  .logo {
    max-width: 120px; 
    height: auto;      
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 100px;  
    height: auto;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .hero-text {
    font-size: 2.5rem;
    white-space: normal;
  }

  .view-menu-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .hero-text-container {
    padding: 20px;
  }

  .welcome-heading {
    font-size: 2rem;
    padding-top: 10px;
    text-align: center;
  }

  .icon-divider i {
    font-size: 1rem;
  }

  .featured-image img {
    margin: 20px auto;
    width: 90%;
  }

  .menu-hero {
    text-align: center;
  }

  .contact-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
  }

  .footer-column {
    padding: 10px 0;
    min-width: 100%;
  }

  .footer-column.right {
    align-items: center;
    max-width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer-links a {
    margin-left: 10px;
    margin-right: 10px;
  }

  .about-us-section {
    flex-direction: column;
    text-align: center;
  }

  .column {
    flex: 1 1 100%;
  }

  .map-container {
    height: 300px;
    margin: 30px 0;
  }

  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-item {
    flex: 1 1 100%;
  }

  .menu-nav {
    font-size: 1rem;
    margin: 20px auto;
  }

  h1 {
    font-size: 2rem;
    margin-top: 30px;
  }

  .menu-items {
    gap: 20px;
  }
}

/* animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.mobile-hero {
  display: none;
}

@media (max-width: 768px) {
  .desktop-hero {
    display: none;
  }

  .mobile-hero {
    display: block;
  }
}

@media (max-width: 480px) {
  #contact-us {
    padding-top: 5px;
  }
}

@media (max-width: 480px) {
  .contact-phone {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .map-container {
    margin-bottom: 0;
  }

  #contact-us {
    padding-bottom: 0;
  }

  .contact-footer {
    margin-top: 0;
  }
}

/* MOBILE FOOTER */
@media (max-width: 480px) {
  .contact-footer {
    padding-top: 40px;
  }

  .footer-tagline {
    text-align: center;
    display: block;
    margin: 20px auto 0 auto;
    max-width: 300px; 
  }

  .footer-column.right h4 {
    margin-top: 20px;
    padding-top: 20px;
  }

  .footer-column.right .closed-day {
    display: block;
    margin: 15px auto 0 auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-column.right {
    text-align: center;
  }

  .hours-list {
    padding: 0;
  }

  .hours-list li {
    display: block;
    margin-bottom: 10px;
  }

  .day-label,
  .hour-time {
    display: inline-block;
    font-size: 16px;
    margin-left: 6px;
  }
}

@media (max-width: 900px) {
  .hero-text {
    font-size: 2rem;            
    padding: 0 16px;            
    text-align: center;         
    white-space: normal;       
    word-break: normal;          
    overflow-wrap: break-word;   
  }
}

@media (max-width: 600px) {
  #backToTop {
    width: 40px;
    height: 40px;
    font-size: 18px;
    bottom: 15px;
    right: 15px;
  }
}