/* ============================= */
/* GLOBAL RESET */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

/* ============================= */
/* HEADER */
.header {
    background: linear-gradient(135deg, #F4D58D, #D32F2F);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ============================= */
/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ============================= */
/* LOGO */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
}

.logo-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ============================= */
/* NAV MENU */
#navMenu {
    display: flex;
    align-items: center;
    gap: 28px;
}

#navMenu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

/* Underline hover effect */
#navMenu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

#navMenu a:hover {
    color: #000000;
}

#navMenu a:hover::after {
    width: 100%;
}

/* ============================= */
/* ORDER BUTTON */
.book {
    background: linear-gradient(135deg, #111, #000);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 30px;
    border: 1px solid rgba(189, 189, 189, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.book:hover {
    background: rgb(48, 45, 45);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.35);
    transform: translateY(-2px);
}

/* Shine animation */
.book::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: all 0.6s ease;
}

.book:hover::after {
    left: 120%;
}

/* Remove underline effect for button link */
#navMenu a:has(.book)::after {
    display: none;
}

/* ============================= */
/* MENU TOGGLE (MOBILE) */
.menu-toggle {
    display: none;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

/* ============================= */
/* RESPONSIVE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    #navMenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        gap: 18px;
        padding: 20px 0;
        display: none;
    }

    #navMenu.active {
        display: flex;
    }

    #navMenu a {
        font-size: 16px;
    }
}



.hero-banner {
    width: 100%;
    height: 35vh; /* desktop height */
    background-image: url('images/catering.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-banner h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ECECEC;
    font-size: 48px;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 1.2;
    padding: 0 15px; /* prevents overflow */
}


/* ===== Catering Section ===== */
.catering-section {
  padding: 80px 0;
  background-color: #f8f5f0;
}

/* Center container */
.catering-container {
  max-width: 1300px; /* slightly wider to allow bigger images */
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Each row */
.catering-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  margin-bottom: 100px;
}

/* Reverse layout */
.catering-row.reverse {
  flex-direction: row-reverse;
}

/* Image & text columns */
.catering-img,
.catering-text {
  flex: 0 0 50%;
}

/* Image styling */
.catering-img {
  display: flex;
  justify-content: center;
}

.catering-img img {
  width: 100%;
  max-width: 520px;      /* desktop max size */
  height: 360px;         /* fixed height for uniformity */
  object-fit: cover;     /* fills box without stretching */
  border-radius: 6px;
  border: 4px solid #131331;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Text styling */
.catering-text {
  display: flex;
  flex-direction: column;
  margin-bottom: -100px;
  align-items: center;
  text-align: center;
}

.catering-text h2 {
  font-size: 34px;
  font-weight: 600;
  font-family: 'Georgia', serif;
  margin-bottom: 18px;
  letter-spacing: 1px;
  color: #131331;
}

.catering-text p {
  font-size: 19px;
  line-height: 1.9;
  color: #555;
  max-width: 500px;
  position: relative;
  padding-bottom: 80px;font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.catering-text p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background-image: url("images/flower.png");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .catering-row,
  .catering-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .catering-text {
    align-items: center;
  }

  .catering-text p {
    max-width: 100%;
  }

  .catering-img img {
    max-width: 100%;
  }
}

@media (min-width: 991px) and (max-width: 1159px) {
  .catering-img img {
    max-width: 420px;   /* reduce size */
    width: 100%;
    height: 320px;       /* prevent cropping */
    object-fit: contain;
  }
}


.catering-events {
    position: relative;
    width: 100%;
    padding: 70px 20px;
    overflow: hidden;
    text-align: center; 
    background-color: #D32F2F; 
    margin-top: -90px; /* 🔥 center all text */
}

/* Container centered */
.catering-eventss {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;   /* 🔥 center content */
}

/* Text wrapper */
.catering-elevate {
    width: 100%;
}

/* H1 styling */
.catering-elevate h1 {
    font-size: 42px;
    color:  #ffffff;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
    font-weight: bold;
    white-space: nowrap;       /* 🔥 forces ONE line */
}

/* H4 styling */
.catering-elevate h4 {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    white-space: nowrap;       /* 🔥 forces ONE line */
}


.catering-elevate h1 {
    font-size: 42px;
    color: #F4D58D;
    margin-bottom: 25px;
    font-family: 'Georgia', serif; /* You can replace 'Georgia' with any font you like */
    font-weight: bold; /* Optional: makes it bold */; /* Optional: adjust size */ /* Optional: change color */
}

.catering-events::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("images/reelsbg.jpg"); /* 👈 your bg image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.15; /* adjust for subtlety */
    mix-blend-mode: multiply; /* blends beautifully with gold */
    z-index: 0;
}

/* ===== Responsive for Catering Events ===== */

/* Tablets / medium screens */
@media (max-width: 992px) {
  .catering-events {
    padding: 50px 15px;
    margin-top: -60px;  /* adjust negative spacing */
  }

  .catering-elevate h1 {
    font-size: 32px;
    white-space: normal;  /* allow wrapping */
  }

  .catering-elevate h4 {
    font-size: 16px;
    letter-spacing: 1px;
    white-space: normal;  /* allow wrapping */
  }
}

/* Mobile / small screens */
@media (max-width: 576px) {
  .catering-events {
    padding: 35px 10px;
    margin-top: -40px;
  }

  .catering-elevate h1 {
    font-size: 24px;
    white-space: normal; /* allow wrapping */
  }

  .catering-elevate h4 {
    font-size: 14px;
    letter-spacing: 1px;
    white-space: normal; /* allow wrapping */
  }
}


/* Section background */
.catering-how {
  background:transparent; /* primary red */
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

/* Card container */
.catering-how-container {
  max-width: 1200px;
  background: #F4D58D; /* gold */
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Image on top */
.catering-image {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  object-fit: cover;
}

/* Text block */
.how-catering {
  width: 100%;
  max-width: 900px;
  text-align: center;
}

/* Heading */
.how-catering h2 {
  font-size: 28px;
  font-weight: 700;
  color: #D32F2F; /* red */
  margin-bottom: 20px;
  font-family: 'Merriweather', serif;
  position: relative;
  padding-bottom: 12px;
}

/* Decorative line under h2 */
.how-catering h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: #D32F2F; /* red */
  border-radius: 2px;
}

/* Paragraph */
.how-catering p {
  font-size: 16px;
  line-height: 1.8;
  color: #131010; /* white */
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-align: justify;
}

/* Enquire Now button */
.enquire-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 40px;
  background-color: #D32F2F;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

/* Hover effect */
.enquire-btn:hover {
  background-color: #000000;
  color: #FFFFFF;
  transform: translateY(-2px);
}


.footer {
    background-color: #F4D58D;
    color: #fff;
    font-family: 'Poppins', 'Arial', sans-serif;
    padding-top: 50px;
    position: relative;
}

.footer-bg {
    background: linear-gradient(135deg, #F4D58D, #D32F2F);
    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: 80px;              /* slightly bigger */
    height: 80px;
    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: #060706;
    margin-bottom: 15px;
}

.footer-address p {
    font-size: 19px;
    line-height: 1.6;
    color: #0f0d0d;
}
.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: #0c0a0a;
    margin-bottom: 10px;
}

.address-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    margin: 0;
    max-width: 200px; /* keep text neat */
}

/* Map Section */
.map-section h4 {
    font-size: 18px;
    color: #000000;
    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: #000000;                   /* 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: #000000;                          /* bright heading */
    letter-spacing: 1px;
}

.footer-hours p {
    font-size: 16px;
    margin: 4px 0;
    color: #000000;                       /* easy on eyes */
}

.footer-hours strong {
    color: #f1f1f1;                       /* 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: 16px;
    color: #000000;
    background: transparent;
}

.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: 16px;
    color: #080707;
    background: transparent;
}


/* -------------------- 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: 70px;
        height: 70px;
    }
    .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;
    }
}
