* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

/* ============================= */
/* HEADER */
.header {
    width: 100%;
    background: linear-gradient(135deg, #000000, #2E7D32);
    position: sticky;  
    padding: 0;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ============================= */
/* CONTAINER NAV */
.container.nav {
    display: flex;
    height: 132px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ============================= */
/* LOGO */
.logo-wrap {
    display: flex;
    height: 100%;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 100%;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #D4AF37;
}

.logo-text {
    font-size: 22px; /* slightly bigger text */
    font-weight: 600;
    color: #D4AF37;
}

/* ============================= */
/* NAV LINKS */
#navMenu {
    display: flex;
    gap: 28px; /* slightly bigger spacing */
}

#navMenu a {
    text-decoration: none;
    color: #F5F5F5;
    font-size: 16px; /* slightly bigger links */
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 6px 0;
}

/* UNDERLINE HOVER EFFECT */
#navMenu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #D4AF37;
    left: 0;
    bottom: -6px;
    transition: width 0.3s ease;
}

#navMenu a:hover {
    color: #D4AF37;
}

#navMenu a:hover::after {
    width: 100%;
}

/* ============================= */
/* MENU TOGGLE (MOBILE) */
.menu-toggle {
    display: none;
    font-size: 32px; /* slightly bigger toggle icon */
    color: #D4AF37;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    #navMenu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 85px; /* matches bigger navbar */
        left: 0;
        width: 100%;
        background: #000000;
        padding: 20px 0; /* more padding for bigger menu */
        z-index: 999;
    }

    #navMenu a {
        padding: 16px 20px;
        text-align: center;
        font-size: 18px; /* slightly bigger mobile links */
    }

    #navMenu.active {
        display: flex;
    }

    .logo-img {
        height: 45px; /* slightly bigger for mobile */
    }

    .logo-text {
        font-size: 18px;
    }

    .menu-toggle {
        font-size: 36px; /* bigger toggle for mobile */
    }
}


.container {
  max-width: 1200px;
  margin: 0 auto;
}
.explore-menu {
  padding: 60px 20px;
  background-color: #D4AF37;
}

.explore-menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

/* BUTTON STYLE */
.menu-btn {
  background: transparent;
  border: none;
  color: #131313;
  font-family:Georgia, 'Times New Roman', Times, serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 8px;
  transition: color 0.3s ease;
}

.menu-btn:hover {
  color: #f8f7f7;
}

/* SEPARATOR LINE */
.menu-separator {
  width: 1px;
  height: 20px;
  background: rgba(2, 2, 2, 0.4);
}

/* REMOVE SEPARATOR ON LINE WRAP (MOBILE) */
@media (max-width: 768px) {
  .menu-separator {
    display: none;
  }
}

/* ============================= */
/* MENU IMAGE GRID */
/* ============================= */

/* MENU GALLERY SECTION */
.menu-gallery {
  padding: 60px 20px;
  background-color: #113313;
  background-size: cover; /* Make image cover entire section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

/* CARD TITLE */
.card-title {
  padding: 14px 16px 18px;
  font-size: 25px;
  font-weight: 600;
  color: #f5f7f5; /* brand green */
  text-align: center;
  font-family: 'Playfair Display', serif;
  background: transparent;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 4 per row */
  gap: 36px; /* MORE SPACE BETWEEN CARDS */
}

/* CARD */
.gallery-card {
  background: #0e0c0c;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit; /* keep text color */
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(0,0,0,0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* IMAGE */
.gallery-card img {
  width: 100%;
  height: 300px; /* ⬅ BIGGER CARD HEIGHT */
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* HOVER EFFECT */
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(0,0,0,0.22);
}


.footer {
    background-color: #D4AF37;
    color: #fff;
    font-family: 'Poppins', 'Arial', sans-serif;
    padding-top: 50px;
    position: relative;
}

.footer-bg {
    background-color: #D4AF37;
    padding: 50px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* -------------------- LEFT: BRAND + QUOTE + LINKS + SOCIAL -------------------- */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Logo + Brand Name */
.brand-logo img {
    width: 60px;              /* slightly bigger */
    height: 60px;
    object-fit: cover;         /* cover the container perfectly */
    border-radius: 50%;        /* make it a perfect circle */
    border: 2px solid #D4AF37; /* golden border */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* subtle shadow */
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect */
.brand-logo img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6); /* golden glow on hover */
}

.brand-logo h1 {
    font-size: 26px;
    color: #113313;
    margin: 0;
    font-weight: 700;
}

/* Quote / tagline */
.footer-quote {
    font-size: 17px;
    font-style: italic;
    color: #113313;
    margin: 0;
}

/* 5 Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: black;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s, filter 0.3s;
}

.footer-social a:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* -------------------- MIDDLE: ADDRESS -------------------- */
.footer-address h2 {
    font-size: 25px;
    color: #f5faf5;
    margin-bottom: 15px;
}

.footer-address p {
    font-size: 19px;
    line-height: 1.6;
    color: #113313;
}
.footer-address-map {
    display: flex;
    gap: 30px; /* space between address and map */
    align-items: flex-start; /* align top of text with map */
}

/* Address Section */
.address-section h4 {
    font-size: 18px;
    color: #113313;
    margin-bottom: 10px;
}

.address-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin: 0;
    max-width: 200px; /* keep text neat */
}

/* Map Section */
.map-section h4 {
    font-size: 18px;
    color: #113313;
    margin-bottom: 10px;
}

.map-section iframe {
    border-radius: 10px;
    flex: 1;          /* map takes remaining space */
    min-width: 250px; /* prevent map from shrinking too small */
}

/* Responsive: stack vertically on smaller screens */


.footer-address iframe {
    border-radius: 10px;
    margin-top: 10px;
}

/* -------------------- RIGHT: SERVING HOURS -------------------- */
.footer-hours {
    font-family: 'Lora', serif;       /* elegant and readable */
    color: #FFF8E7;                   /* soft off-white for gold background */
    line-height: 1.8;                 /* slightly more spacing for clarity */
    margin-top: -1px;
}

.footer-hours h2 {
    font-family: 'Playfair Display', serif; /* decorative yet classy */
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;                          /* bright heading */
    letter-spacing: 1px;
}

.footer-hours p {
    font-size: 16px;
    margin: 4px 0;
    color: #0e0b07;                       /* easy on eyes */
}

.footer-hours strong {
    color: #080807;                       /* golden accent for days */
    font-weight: 600;
}



/* -------------------- COPYRIGHT -------------------- */
.footer p.copyright {
    position: absolute;  /* position relative to footer */
    left: 0;            /* stick to the right edge */
    bottom: 0;           /* optional: bottom of footer */
    margin: 0;
    padding: 10px 20px;  /* optional spacing from edge */
    font-size: 14px;
    color: #113313;
    background-color: #D4AF37;
}


.footer p.inxcel {
    position: absolute;  /* position relative to footer */
    right: 0;            /* stick to the right edge */
    bottom: 0;           /* optional: bottom of footer */
    margin: 0;
    padding: 10px 20px;  /* optional spacing from edge */
    font-size: 14px;
    color: #113313;
    background-color: #D4AF37;
}




/* -------------------- RESPONSIVE -------------------- */


/* Desktop: keep left and right at edges */

/* Mobile: stack and center */
@media screen and (max-width: 768px) {
    .footer p.copyright,
    .footer p.inxcel {
        position: static;         /* cancel absolute positioning */
        width: 100%;              /* full width */
        text-align: center;       /* center text */
        padding: 5px 0;           /* smaller padding for mobile */
        margin: 0;
        font-size: 13px;          /* slightly smaller font */
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-left {
        align-items: flex-start;
    }
    .brand-logo img {
        width: 40px;
        height: 40px;
    }
    .footer-links {
        gap: 10px;
    }
    .footer-address iframe {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .brand-logo h1 {
        font-size: 20px;
    }
    .footer-quote,
    .footer-links a,
    .footer-hours p,
    .footer-address p {
        font-size: 13px;
    }
    .footer-social a img {
        width: 24px;
        height: 24px;
    }
}
