* {
    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) {

    /* Reduce header height */
    .container.nav {
        height: 90px;
    }

    /* Logo size adjust */
    .logo-text {
        font-size: 16px;
    }

    .logo-img {
        height: 70px;
    }

    /* Show toggle button */
    .menu-toggle {
        display: block;
        z-index: 1100;
    }

    /* Hide nav by default */
    #navMenu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #113313;

        flex-direction: column;
        align-items: center;
        gap: 20px;

        padding: 30px 0;

        display: none; /* hidden initially */
    }

    /* Show nav when active */
    #navMenu.active {
        display: flex;
    }

    /* Mobile nav links */
    #navMenu a {
        font-size: 18px;
        color: #ffffff;
    }

    #navMenu a::after {
        display: none; /* remove underline on mobile */
    }

}



/* ============================= */
/* MOBILE RESPONSIVE */
/* Mobile / Tablets */

.about-sec {
    width: 100%;
    height: 350px;
    background: url("images/about.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.about-sec .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    text-align: center;
    padding: 0 20px;
}

.about-sec h1 {
    color: #D4AF37;
    font-size: 38px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

@media (max-width: 768px) {
    .about-sec {
        height: 280px;
    }

    .about-sec h1 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .about-sec {
        height: 220px;
    }

    .about-sec h1 {
        font-size: 24px;
        line-height: 1.3;
    }
}



.about-use {
  width: 100%;
  padding: 60px 20px;
  background: #f8f8f8;
}

.about-use-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.use-item {
  text-align: center;
}

.use-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
}

.use-item p {
  font-size: 18px;
  font-weight: 600;
  color: #2E7D32;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
}

@media (max-width: 992px) {
  .about-use {
    padding: 50px 20px;
  }

  .about-use-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .use-item img {
    width: 90px;
    height: 90px;
  }

  .use-item p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .about-use {
    padding: 40px 15px;
  }

  .about-use-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .use-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
  }

  .use-item p {
    font-size: 15px;
  }
}



.about-cul {
  padding: 80px 0;
  background: #fff;
}

.about-cul .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.about-cul-grid {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  justify-content: flex-start;
}

/* IMAGE */
.cul-image {
  width: 60%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-left: -100px;
  flex-shrink: 0;
}

/* TEXT */
.cul-text {
  max-width: 600px;
}

.cul-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Merriweather', serif;
  color: #113313;
}

.cul-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
  color: #333;
  font-family: 'Open Sans', sans-serif;
}

/* ===================== */
/* RESPONSIVE */
@media (max-width: 992px) {
  .about-cul {
    padding: 60px 0;
  }

  .about-cul .container,
  .about-cul-grid {
    flex-direction: column;
    gap: 30px;
  }

  .cul-image {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .cul-text {
    max-width: 100%;
    text-align: center;
  }

  .cul-text p {
    text-align: left;
  }

  .cul-text h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .about-cul {
    padding: 40px 0;
  }

  .cul-text h2 {
    font-size: 24px;
  }

  .cul-text p {
    font-size: 15px;
  }
}


.vision-slider {
  display: flex;
  gap: 30px;
  scroll-behavior: smooth;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.vision-card {
  flex: 0 0 450px;
  background: #f0f5f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.vision-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 20px 0 15px;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.vision-card img {
  width: 90%;
  height: 70px;
  object-fit: contain;
  display: block;
  margin: 0 auto 15px;
}

.vision-card p {
  padding: 15px 20px 25px;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  text-align: justify;
  font-family: 'Poppins', sans-serif;
}

/* HOVER */
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ===================== */
/* RESPONSIVE */
@media (max-width: 992px) {
  .vision-card {
    flex: 0 0 100%;
    max-width: 600px;
  }

  .vision-card h3 {
    font-size: 20px;
  }

  .vision-card p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .vision-slider {
    gap: 20px;
  }

  .vision-card {
    border-radius: 14px;
  }

  .vision-card h3 {
    font-size: 18px;
  }

  .vision-card p {
    font-size: 14px;
    text-align: left;
  }
}


.about-you {
  padding: 80px 0;
  background: #fff;
}

.about-you .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

/* IMAGE */
.you-image {
  width: 60%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-left: -100px;
  flex-shrink: 0;
}

/* TEXT */
.you-text h2 {
  font-size: 29px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Merriweather', serif;
  color: #113313;
}

.you-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 20px;
}

/* ===================== */
/* RESPONSIVE */
@media (max-width: 992px) {
  .about-you {
    padding: 60px 0;
  }

  .about-you .container {
    flex-direction: column;
    gap: 30px;
  }

  .you-image {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .you-text {
    text-align: center;
  }

  .you-text p {
    text-align: left;
  }

  .you-text h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .about-you {
    padding: 40px 0;
  }

  .you-text h2 {
    font-size: 23px;
  }

  .you-text p {
    font-size: 15px;
  }
}


.about-how {
  background: #113313;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.about-how .container {
  max-width: 1200px;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* IMAGE */
.how-image {
  width: 50%;
  max-width: 600px;
  border-radius: 12px;
  object-fit: cover;
}

/* TEXT */
.how-text {
  width: 50%;
}

.how-text h2 {
  font-size: 24px;
  font-weight: 700;
  color: #113313;
  margin-bottom: 20px;
  font-family: 'Merriweather', serif;
  position: relative;
  padding-bottom: 10px;
}

.how-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #113313;
  border-radius: 2px;
}

.how-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  text-align: justify;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* ===================== */
/* RESPONSIVE */
@media (max-width: 992px) {
  .about-how {
    padding: 70px 20px;
  }

  .about-how .container {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }

  .how-image,
  .how-text {
    width: 100%;
  }

  .how-text h2 {
    font-size: 22px;
    text-align: center;
  }

  .how-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .how-text p {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .about-how {
    padding: 50px 15px;
  }

  .about-how .container {
    padding: 20px;
    border-radius: 12px;
  }

  .how-text h2 {
    font-size: 20px;
  }

  .how-text p {
    font-size: 15px;
  }
}


.about-note {
    margin: 0 auto;
}
.about-note {
    width: 63%;
    height: 350px;
    background: url("images/about.webp") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 50px auto 0;
    border: 4px solid #D4AF37;
    border-radius: 14px;
}


/* Optional dark overlay for better text visibility */
.about-note::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

.about-note {
    width: 63%;
    height: 350px;
    background: url("images/about.webp") no-repeat center center/cover;
    position: relative;
    margin: 60px auto 0;
    border-radius: 14px;
    overflow: hidden;
}

.about-note::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

/* OVERLAPPING CARD */
.about-overlap-card {
    width: 35%;
    background: #113313;
    border-radius: 14px;
    padding: 25px 30px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    text-align: center;
    position: relative;
    margin: -70px auto 10px; /* overlaps image slightly */
    z-index: 10;
    min-height: 250px;
    height: auto; 
}


/* Card Heading */
.about-overlap-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #D4AF37;
    font-family: 'Poppins', sans-serif;
}

/* Card Text */
.about-overlap-card p {
    font-size: 17px;
    color: #978b4d;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 992px) {

  .about-note {
    width: 85%;
    height: 300px;
    margin-top: 40px;
  }

  .about-overlap-card {
    width: 60%;
    height: auto;
    margin: -60px auto 20px;
    padding: 22px 25px;
  }

  .about-overlap-card h3 {
    font-size: 20px;
  }

  .about-overlap-card p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {

  .about-note {
    width: 95%;
    height: 240px;
    margin-top: 30px;
  }

  .about-overlap-card {
    width: 90%;
    margin: -40px auto 20px;
    padding: 20px;
  }

  .about-overlap-card h3 {
    font-size: 18px;
  }

  .about-overlap-card p {
    font-size: 15px;
    line-height: 1.5;
  }
}




.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;
    }
}
