/* ===============================
   BASE RESET
=================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===============================
   CONTAINER
=================================*/
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===============================
   BUTTONS
=================================*/
.btn {
    display: inline-block;
    padding: 12px 22px;
    background: #c89b3c;
    color: #fff;
    border-radius: 5px;
    transition: 0.3s ease;
    font-weight: 600;
}

.btn:hover {
    background: #a67c2d;
}

.btn-outline {
    background: transparent;
    border: 2px solid #c89b3c;
    color: #c89b3c;
}

.btn-outline:hover {
    background: #c89b3c;
    color: #fff;
}

/* ===============================
   NAVBAR (MOBILE FIRST)
=================================*/
.navbar {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h2 {
    font-size: 20px;
    color: #c89b3c;
}

/* nav links hidden by default (mobile) */
.nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    display: none;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.nav-links li {
    list-style: none;
    margin: 12px 0;
}

.nav-links a {
    font-size: 16px;
    color: #111;
}

/* hamburger */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #111;
}

/* active class (JS will toggle this) */
.nav-links.active {
    display: flex;
}

/* ===============================
   HERO SECTION
=================================*/
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background animation layer */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroSlide 15s infinite;
    z-index: 0;
}

/* Dark overlay (keeps text readable) */
.hero-overlay {
    position: relative;
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 60px 0;
    z-index: 1;
}

/* Keyframes for 3 images */
@keyframes heroSlide {
    0% {
        background-image: url('./GALLERY/Babbel.jpg');
    }
    33% {
        background-image: url('./GALLERY/download\ \(3\).jpg');
    }
    66% {
        background-image: url('./GALLERY/The\ Glamorous\,\ Lonely\ Lives\ of\ Private\ Chefs\ \(Published\ 2023\).jpg');
    }
    100% {
        background-image: url('./GALLERY/perfect.jpg');
    }
}

.hero-overlay {
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

/* ===============================
   SECTIONS GENERAL
=================================*/
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* ===============================
   ABOUT PREVIEW
=================================*/
.about-preview-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-text p {
    margin-bottom: 15px;
}

/* ===============================
   SERVICES
=================================*/
.services-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.service-card img {
    border-radius: 8px;
    margin-bottom: 10px;
}

/* ===============================
   FEATURED MENU
=================================*/
.menu-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.menu-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.menu-content {
    padding: 15px;
}

/* ===============================
   WHY CHOOSE US
=================================*/
.choose-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
}

.choose-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

/* ===============================
   TESTIMONIALS
=================================*/
.testimonials-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: auto;
}

/* ===============================
   CTA
=================================*/
.cta-section {
    background: linear-gradient(
        135deg,
        #c89b3c,   /* warm gold (luxury food feel) */
        #8b5e3c    /* warm brown (earth / cooking tradition) */
    );
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.cta-overlay {
    background: rgba(0, 0, 0, 0.25); /* subtle depth without hiding color */
    padding: 60px 20px;
    border-radius: 12px;
    max-width: 900px;
    margin: auto;
}

.cta-content h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    color: #f5f5f5;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-content .btn {
    background: #fff;
    color: #8b5e3c;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.cta-content .btn:hover {
    background: #111;
    color: #fff;
}

.cta-overlay {
    background: rgba(0,0,0,0.7);
    padding: 80px 0;
}

/* ===============================
   FOOTER
=================================*/
.footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-box h3 {
    margin-bottom: 10px;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin: 8px 0;
}

.footer a {
    color: #c89b3c;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 15px;
}

/* ===============================
   WHATSAPP BUTTON
=================================*/
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    padding: 12px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
}

/* ===============================
   DESKTOP RESPONSIVE
=================================*/
@media (min-width: 768px) {

    .menu-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        gap: 20px;
        box-shadow: none;
        width: auto;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .about-preview-container {
        flex-direction: row;
        align-items: center;
    }

    .services-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .menu-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .choose-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    background: #c89b3c;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn:hover {
    background: #a67c2d;
}

.navbar {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h2 {
    font-size: 20px;
    color: #c89b3c;
}

.nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.nav-links li {
    list-style: none;
    margin: 12px 0;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #111;
}

.nav-links.active {
    display: flex;
}

.about-hero {
    background: url('./GALLERY/booking.jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
}

.about-hero-overlay {
    background: rgba(0,0,0,0.6);
    width: 100%;
    padding: 60px 0;
}

.about-hero-content {
    text-align: center;
    color: #fff;
}

.about-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.our-story {
    padding: 60px 0;
}

.story-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mission-vision {
    padding: 60px 0;
    background: #f9f9f9;
}

.mission-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.mission-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.team-section {
    padding: 60px 0;
}

.team-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.team-card {
    text-align: center;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.stats-section {
    padding: 60px 0;
    background: #111;
    color: #fff;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
}

.stat-box h2 {
    font-size: 28px;
    color: #c89b3c;
}

.about-cta {
    background: linear-gradient(
        135deg,
        #8b5e3c,   /* warm brown (food, earth, tradition) */
        #c89b3c,   /* golden catering tone (luxury, celebration) */
        #2f2f2f    /* deep charcoal (elegance, contrast) */
    );
    padding: 90px 20px;
    text-align: center;
    position: relative;
}

.about-cta-overlay {
    background: rgba(0, 0, 0, 0.35);
    padding: 70px 20px;
    border-radius: 14px;
    max-width: 850px;
    margin: auto;
}

.about-cta-content h2 {
    color: #ffffff;
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-cta-content p {
    color: #f5f5f5;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-cta-content .btn {
    background: #ffffff;
    color: #8b5e3c;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-cta-content .btn:hover {
    background: #111;
    color: #fff;
}

.footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin: 8px 0;
}

.footer a {
    color: #c89b3c;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 15px;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    padding: 12px 15px;
    border-radius: 50px;
    font-weight: bold;
}

@media (min-width: 768px) {

    .menu-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: auto;
        box-shadow: none;
        padding: 0;
    }

    .story-container {
        flex-direction: row;
        align-items: center;
    }

    .mission-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-hero h1 {
        font-size: 44px;
    }
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    background: #c89b3c;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn:hover {
    background: #a67c2d;
}

.navbar {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h2 {
    font-size: 20px;
    color: #c89b3c;
}

.nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.nav-links li {
    list-style: none;
    margin: 12px 0;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #111;
}

.nav-links.active {
    display: flex;
}

.services-hero {
    background: url('../GALLERY/download (12).jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
}

.services-hero-overlay {
    background: rgba(0,0,0,0.6);
    width: 100%;
    padding: 60px 0;
}

.services-hero-content {
    text-align: center;
    color: #fff;
}

.services-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.services-list {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.service-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 15px;
}

.service-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-content p {
    margin-bottom: 15px;
}

.service-process {
    padding: 60px 0;
    background: #f9f9f9;
}

.process-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.process-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.process-number {
    font-size: 20px;
    font-weight: bold;
    color: #c89b3c;
    margin-bottom: 10px;
}

.service-benefits {
    padding: 60px 0;
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
}

.benefit-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.services-cta {
    background: linear-gradient(
        135deg,
        #2f2f2f,   /* deep charcoal (authority, elegance) */
        #8b5e3c,   /* warm brown (food, craft, tradition) */
        #c89b3c    /* gold (premium service, celebration) */
    );
    padding: 90px 20px;
    text-align: center;
    position: relative;
}

.services-cta-overlay {
    background: rgba(0, 0, 0, 0.40);
    padding: 70px 20px;
    border-radius: 14px;
    max-width: 850px;
    margin: auto;
}

.services-cta-content h2 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-cta-content p {
    color: #f5f5f5;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.services-cta-content .btn {
    background: #ffffff;
    color: #8b5e3c;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.services-cta-content .btn:hover {
    background: #111;
    color: #fff;
}
.footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin: 8px 0;
}

.footer a {
    color: #c89b3c;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 15px;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    padding: 12px 15px;
    border-radius: 50px;
    font-weight: bold;
}

@media (min-width: 768px) {

    .menu-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: auto;
        box-shadow: none;
        padding: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-hero h1 {
        font-size: 44px;
    }

    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    background: #c89b3c;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn:hover {
    background: #a67c2d;
}

.navbar {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h2 {
    font-size: 20px;
    color: #c89b3c;
}

.nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.nav-links li {
    list-style: none;
    margin: 12px 0;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #111;
}

.nav-links.active {
    display: flex;
}

.menu-hero {
    background: url('../GALLERY/download (14).jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.menu-hero-overlay {
    background: rgba(0,0,0,0.6);
    width: 100%;
    padding: 60px 0;
}

.menu-hero-content {
    text-align: center;
    color: #fff;
}

.menu-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.menu-categories {
    padding: 60px 0;
}

.categories-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.category-card {
    text-align: center;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
}

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.menu-items {
    padding: 60px 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.menu-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-info {
    padding: 15px;
}

.menu-info h3 {
    margin-bottom: 5px;
}

.menu-info span {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: #c89b3c;
}

.drinks-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.drinks-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.drink-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.drink-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.drink-content {
    padding: 15px;
}

.special-packages {
    padding: 60px 0;
}

.packages-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.package-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.package-card h2 {
    color: #c89b3c;
    margin: 10px 0;
}

.package-card ul {
    list-style: none;
    margin: 15px 0;
}

.package-card ul li {
    margin: 8px 0;
}

.featured-package {
    background: #111;
    color: #fff;
}

.menu-cta {
    background: linear-gradient(
        135deg,
        #c89b3c,   /* gold (premium, appetite trigger) */
        #b85c38,   /* warm food brown-red (rich cuisine tone) */
        #2f2f2f    /* dark grounding contrast */
    );
    padding: 90px 20px;
    text-align: center;
    position: relative;
}

.menu-cta-overlay {
    background: rgba(0, 0, 0, 0.35);
    padding: 70px 20px;
    border-radius: 14px;
    max-width: 850px;
    margin: auto;
}

.menu-cta-content h2 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.menu-cta-content p {
    color: #f5f5f5;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.menu-cta-content .btn {
    background: #ffffff;
    color: #b85c38;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.menu-cta-content .btn:hover {
    background: #111;
    color: #fff;
}

.footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin: 8px 0;
}

.footer a {
    color: #c89b3c;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 15px;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    padding: 12px 15px;
    border-radius: 50px;
    font-weight: bold;
}

@media (min-width: 768px) {

    .menu-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: auto;
        box-shadow: none;
        padding: 0;
    }

    .categories-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .drinks-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .packages-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .menu-hero h1 {
        font-size: 44px;
    }

    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    background: #c89b3c;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn:hover {
    background: #a67c2d;
}

.navbar {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h2 {
    font-size: 20px;
    color: #c89b3c;
}

.nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.nav-links li {
    list-style: none;
    margin: 12px 0;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #111;
}

.nav-links.active {
    display: flex;
}

.gallery-hero {
    background: url('../GALLERY/download (5).jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.gallery-hero-overlay {
    background: rgba(0,0,0,0.6);
    width: 100%;
    padding: 60px 0;
}

.gallery-hero-content {
    text-align: center;
    color: #fff;
}

.gallery-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.event-gallery {
    padding: 60px 0;
}

.gallery-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.food-showcase {
    padding: 60px 0;
    background: #f9f9f9;
}

.food-showcase-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.food-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.food-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.3s ease;
}

.food-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding: 10px;
}

.video-highlights {
    padding: 60px 0;
}

.video-card {
    width: 100%;
    margin-bottom: 20px;
}

.video-card iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 10px;
}

.gallery-cta {
    background: linear-gradient(
        135deg,
        #1f1f1f,   /* deep elegant black (gallery sophistication) */
        #8b5e3c,   /* warm catering brown (craft & food tradition) */
        #c89b3c    /* gold (celebration & premium feel) */
    );
    padding: 90px 20px;
    text-align: center;
    position: relative;
}

.gallery-cta-overlay {
    background: rgba(0, 0, 0, 0.40);
    padding: 70px 20px;
    border-radius: 14px;
    max-width: 850px;
    margin: auto;
}

.gallery-cta-content h2 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-cta-content p {
    color: #f5f5f5;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.gallery-cta-content .btn {
    background: #ffffff;
    color: #8b5e3c;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.gallery-cta-content .btn:hover {
    background: #111;
    color: #fff;
}

.footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin: 8px 0;
}

.footer a {
    color: #c89b3c;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 15px;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    padding: 12px 15px;
    border-radius: 50px;
    font-weight: bold;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

@media (min-width: 768px) {

    .menu-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: auto;
        box-shadow: none;
        padding: 0;
    }

    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .food-showcase-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .video-card iframe {
        height: 400px;
    }

    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-hero h1 {
        font-size: 44px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    background: #c89b3c;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn:hover {
    background: #a67c2d;
}

.navbar {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h2 {
    font-size: 20px;
    color: #c89b3c;
}

.nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.nav-links li {
    list-style: none;
    margin: 12px 0;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #111;
}

.nav-links.active {
    display: flex;
}

.booking-hero {
    background: url('../GALLERY/download (12).jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.booking-hero-overlay {
    background: rgba(0,0,0,0.6);
    width: 100%;
    padding: 60px 0;
}

.booking-hero-content {
    text-align: center;
    color: #fff;
}

.booking-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.booking-form {
    width: 90%;
    max-width: 600px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.booking-form button {
    border: none;
    cursor: pointer;
}

.event-details {
    padding: 60px 0;
    background: #f9f9f9;
}

.details-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.detail-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.booking-cta {
    background: linear-gradient(
        135deg,
        #0f172a,   /* deep navy (trust, professionalism) */
        #1e3a8a,   /* royal blue (reliability, service) */
        #c89b3c    /* gold (premium action highlight) */
    );
    padding: 90px 20px;
    text-align: center;
    position: relative;
}

.booking-cta-overlay {
    background: rgba(0, 0, 0, 0.45);
    padding: 70px 20px;
    border-radius: 14px;
    max-width: 850px;
    margin: auto;
}

.booking-cta-content h2 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.booking-cta-content p {
    color: #f5f5f5;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.booking-cta-content .btn {
    background: #ffffff;
    color: #1e3a8a;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.booking-cta-content .btn:hover {
    background: #111;
    color: #fff;
}

.footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin: 8px 0;
}

.footer a {
    color: #c89b3c;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 15px;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    padding: 12px 15px;
    border-radius: 50px;
    font-weight: bold;
}

@media (min-width: 768px) {

    .menu-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: auto;
        box-shadow: none;
        padding: 0;
    }

    .booking-hero h1 {
        font-size: 44px;
    }

    .details-container {
        grid-template-columns: repeat(4, 1fr);
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h2 {
    color: #c89b3c;
    font-size: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
}

/* HERO COMMON */
.contact-hero {
    background: url('./GALLERY/download\ \(13\).jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
}
.contact-hero,
.menu-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.contact-hero-overlay,
.menu-hero-overlay {
    width: 100%;
    padding: 60px 0;
    background: rgba(0,0,0,0.6);
}

/* CONTACT INFO */
.contact-info-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.contact-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* FORM */
.contact-form-container {
    max-width: 600px;
    margin: auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* MAP */
.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* BUSINESS HOURS */
.hours-container {
    max-width: 700px;
    margin: auto;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

/* BUTTON */
.btn {
    background: #c89b3c;
    color: #fff;
    padding: 12px 20px;
    display: inline-block;
    border-radius: 5px;
    border: none;
}

/* FOOTER */
.footer {
    background: #111;
    color: #fff;
    padding: 50px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* WHATSAPP */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    padding: 12px 15px;
    border-radius: 50px;
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media (max-width: 992px) {

    .contact-info-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
}

@media (max-width: 600px) {

    .contact-info-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .contact-hero h1,
    .menu-hero h1 {
        font-size: 26px;
    }
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #111;
    display: block;
    transition: 0.3s ease;
}

/* Mobile navigation + hamburger */
@media (max-width: 992px) {

   .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;           /* better for mobile UX than left */
    width: 35% !important;
    min-height: 100vh;  /* fills screen height naturally */
    padding: 40px 0;
    text-align: center;

    background: linear-gradient(
        135deg,
        #1f1f1f,
        #8b5e3c,
        #c89b3c
    ) !important;

    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 999;

    transform-origin: top;
} 

   .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

    .nav-links li {
        margin: 12px 0;
    }

    .nav-links a {
        
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: 0.3s ease;
    }

    .nav-links a:hover {
        color: #111;
    }
}
/* Optional: animated hamburger when active (requires JS toggle class "open") */
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    padding: 5px;
}


.menu-toggle:hover {
    transform: scale(1.05);
}

.menu-toggle span {
    width: 34px;
    height: 8px;
    background: orangered;
    border-radius: 20px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
}

/* Stylish X Animation */

.menu-toggle.open {
    background: #111;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}