/*
Theme Name: WP3 Theme
Author: Prashant Yadav
Description: Minimal custom development theme.
Version: 1.0
Text Domain: wp3-theme
*/

/* ============================= */
/* Basic Reset */
/* ============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================= */
/* Body */
/* ============================= */

body {
    font-family: Arial, sans-serif;
}

/* ============================= */
/* Container */
/* ============================= */

.container {
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
}

/* ============================= */
/* Header */
/* ============================= */

.site-header {
    padding: 8px 0;
    border-bottom: 3px solid #c8a96a;
}


/* ============================= */
/* Logo */
/* ============================= */

.site-branding img {
    max-height: 70px;
    width: auto;
}



.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ============================= */
/* Navigation */
/* ============================= */

.menu {
    list-style: none;
    display: flex;
    gap: 24px;
}

/* Top-level items */
.menu > li {
    position: relative;
}

/* Links */
.menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: background 0.2s ease,
                box-shadow 0.2s ease,
                color 0.2s ease;
}

/* ============================= */
/* Hover Box */
/* ============================= */

.menu > li > a {
    padding: 8px 14px;
    border-radius: 6px;
}

.menu > li > a:hover {
    background: #f3f3f3;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}

/* ============================= */
/* Active State */
/* ============================= */

.menu .current-menu-item > a,
.menu .current-menu-parent > a,
.menu .current-menu-ancestor > a {
    background: #f1f3f5;          /* soft grey pill */
    color: #111;
    box-shadow: inset 0 -2px 0 #111;  /* subtle bottom line */
}


/* ============================= */
/* Dropdown System */
/* ============================= */

.menu .sub-menu {
    display: none;
    position: absolute;
    list-style: none;
    background: #ffffff;
    min-width: 220px;
    padding: 8px 0;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    z-index: 9999;
}

/* First level dropdown */
.menu > li > .sub-menu {
    top: 100%;
    left: 0;
}

/* Nested dropdown */
.menu .sub-menu li {
    position: relative;
    width: 100%;
}

.menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

/* Show dropdown */
.menu li:hover > .sub-menu {
    display: block;
}

/* Submenu links */
.menu .sub-menu a {
    padding: 10px 18px;
    color: #333;
}

.menu .sub-menu a:hover {
    background: #f5f5f5;
}

/* ============================= */
/* Chevron Arrow */
/* ============================= */

.menu .menu-item-has-children > a::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

/* Rotate on hover */
.menu .menu-item-has-children:hover > a::after {
    transform: rotate(-45deg);
}

/* ============================= */
/* Parampara Footer */
/* ============================= */

.parampara-footer {
    background: #3b0d0d;
    color: #f5e6c8;
    padding: 80px 40px 30px;
    margin-top: 0px;
    box-shadow: inset 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Brand */
.footer-brand {
    font-size: 24px;
    font-weight: 800;
    color: #d4af37;
    margin: 0 0 8px 0;
    letter-spacing: 1.5px;
    position: relative;
    top: -8px;
}



.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: #d4af37;
    margin: 0 0 18px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Subtitle */
.footer-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #f5e6c8;
}

/* Tagline */
.footer-tagline {
    font-size: 14px;
    line-height: 1.8;
}

/* Column Titles */
.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    font-size: 14px;
    line-height: 1.8;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #f5e6c8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #d4af37;
}

/* Footer Paragraph */
.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* ============================= */
/* Footer Social Icons */
/* ============================= */

.footer-social {
    margin-top: 18px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 12px;

    border: 1.5px solid #d4af37;
    border-radius: 50%;

    color: #d4af37;
    font-size: 16px;

    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #d4af37;
    color: #3b0d0d;
    transform: translateY(-2px);
}

.footer-social a::after {
    display: none;
}


/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(245, 230, 200, 0.8);
}

/* ============================= */
/* Responsive */
/* ============================= */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .parampara-footer {
        padding: 60px 20px 25px;
    }
}

/* ============================= */
/* Global Typography System */
/* ============================= */

.section-preheadline {
    font-size: 14px;
    letter-spacing: 2px;
    color: #c8a96a;
    font-weight: 600;   /* increase from current */
    margin-bottom: 15px;
}

.section-heading,
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #3b0d0d;
    margin-bottom: 28px;
}

.section-subtext {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    background: #c8a96a;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #b89045;
}

.btn-primary::after {
    content: "→";
    transition: transform 0.3s ease;
}


.btn-primary:hover::after {
    transform: translateX(4px) rotate(-45deg);
}

/* ============================= */
/* Modern Hero Section */
/* ============================= */

.hero-modern {
    position: relative;
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-modern-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.60) 35%,
        rgba(0,0,0,0.30) 65%,
        rgba(0,0,0,0.05) 100%
    );
}

.hero-modern-content {
    position: relative;
    max-width: 520px;   /* reduced from 600px */
    padding-right: 120px; /* adds breathing space */
    color: #fff;
    z-index: 2;
}
.hero-modern h1 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 550;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 18px;
    margin-bottom: 35px;
    color: #e0e0e0;
    line-height: 1.8;
    max-width: 520px;
}

@media (max-width: 768px) {
    .hero-modern h1 {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 16px;
    }
}

/* ============================= */
/* Trust Section */
/* ============================= */

.trust {
    padding: 100px 40px;
    background: #f9f6f1;
    text-align: center;
}

/* Remove .section-title font-size (handled globally) */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0 auto;
}

.trust-item {
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.trust-item i {
    font-size: 30px;
    color: #c8a96a;
    margin-bottom: 18px;
}

.trust-item h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #3b0d0d;
}

.trust-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ============================= */
/* About Section */
/* ============================= */

.about {
    padding: 100px 40px;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* About Image */

.about-image img {
    width: 97%;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

/* About Content */

.about-content {
    text-align: left;
}

.about-content .section-preheadline {
    display: block;
    margin-bottom: 16px;
}

.about-content .section-heading {
    margin-bottom: 24px;
}

.about-content p:not(.section-preheadline) {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* ============================= */
/* Food Section */
/* ============================= */

.food {
    padding: 100px 40px;
    background: #f9f6f1;
    text-align: center;
}

.food-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */

.food-header .section-heading {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.food-header .section-subtext {
    max-width: 620px;
    margin: 0 auto 60px auto;
}

/* Food Grid */

.food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}

.food-item {
    text-align: center;
}

.food-item img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.4s ease;
}

.food-item h4 {
    margin-top: 18px;
    font-size: 17px;
    font-weight: 600;
    color: #3b0d0d;
    letter-spacing: 0.3px;
}

/* CTA */

.food-cta {
    margin-top: 70px;
}


/* ============================= */
/* Reviews Section */
/* ============================= */

.reviews {
    padding: 100px 40px;
    background: #ffffff;
    text-align: center;
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Rating Summary */

.rating-number {
    font-size: 60px;
    font-weight: 700;
    color: #3b0d0d;
}

.rating-stars {
    font-size: 18px;
    color: #c8a96a;
    margin: 10px 0;
    letter-spacing: 3px;
}

.review-count {
    font-size: 14px;
    color: #666;
    margin-bottom: 60px;
}

/* Slider */

.reviews-wrapper {
    position: relative;
    max-width: 750px;
    margin: 0 auto 60px auto;
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.review-item {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 100px;  /* increase this instead */
    box-sizing: border-box;
    text-align: center;
}

.review-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.review-name {
    font-size: 15px;
    font-weight: 600;
    color: #3b0d0d;
}

/* Arrows */

.review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #c8a96a;
    color: #111;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.review-arrow.prev {
    left: 0;
}

.review-arrow.next {
    right: 0;
}

.review-arrow:hover {
    background: #b89045;
}


/* ============================= */
/* Events Section */
/* ============================= */

.events {
    padding: 100px 40px;
    background: #f9f6f1;
    text-align: center;
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
}

.events .section-heading {
    margin-bottom: 20px;
}

.events .section-subtext {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

/* ============================= */
/* Events Grid */
/* ============================= */

.events-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

/* Each card spans 2 columns */
.event-card {
    grid-column: span 2;
    position: relative;
    aspect-ratio: 5 / 3;   /* Better than fixed height */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.10);
    transition: box-shadow 0.3s ease;
}

/* Center last two cards */
.events-grid .event-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.events-grid .event-card:nth-child(5) {
    grid-column: 4 / span 2;
}

/* ============================= */
/* Card Styling */
/* ============================= */

.event-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.35)
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    z-index: 2;
}

.event-overlay h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

/* Hover Effects */

.event-card:hover {
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* ============================= */
/* Responsive */
/* ============================= */

@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-card {
        grid-column: span 1 !important;
    }
}

@media (max-width: 600px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* Gallery Teaser Section */
/* ============================= */

.gallery-teaser {
    padding: 100px 40px;
    background: #ffffff;
    text-align: center;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-top: 60px;
}

.gallery-large {
    height: 420px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.gallery-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
}

.gallery-small {
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* CTA */

.gallery-cta {
    margin-top: 60px;
}

/* Responsive */

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-large {
        height: 300px;
    }

    .gallery-right {
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
    }

    .gallery-small {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .gallery-right {
        grid-template-columns: 1fr;
    }

    .gallery-small {
        height: 200px;
    }
}

/* ============================= */
/* Gallery Page Section */
/* ============================= */

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gallery-page-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-page-item:hover img {
    transform: scale(1.06);
}

.gallery-page-item:hover {
    box-shadow: 0 22px 55px rgba(0,0,0,0.12);
}

/* ============================= */
/* Responsive */
/* ============================= */

@media (max-width: 992px) {
    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-page-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* Final CTA Section */
/* ============================= */

.final-cta {
    padding: 100px 40px;
    background: #3b0d0d;
    text-align: center;
    color: #ffffff;
    border-bottom: 4px solid #c8a96a;
}

.final-cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-heading {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta-subtext {
    font-size: 16px;
    color: #e0dcdc;
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Second button outline style */

.outline-btn {
    background: transparent;
    border: 2px solid #c8a96a;
    color: #c8a96a;
}

.outline-btn:hover {
    background: #c8a96a;
    color: #1a1a1a;
}

/* ============================= */
/* Contact Page */
/* ============================= */

/* Main Background */
main {
    background: #f9f6f1;
}

/* Contact Sections */
.contact {
    padding: 100px 40px;
    background: #f9f6f1;
}

.contact:first-of-type {
    text-align: center;
    padding-bottom: 30px;
}

/* Section Text */
.contact .section-preheadline {
    text-transform: none;
}

.contact .section-subtext {
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
}


/* ============================= */
/* Contact Info Grid */
/* ============================= */

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Contact Cards */

.contact-item {
    max-width: 420px;
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    border: 1px solid #eee;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #3b0d0d;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.contact-item a {
    color: #3b0d0d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #c8a96a;
}


/* ============================= */
/* Call To Action */
/* ============================= */

.contact-cta {
    margin-top: 70px;
    margin-bottom: 80px;
    text-align: center;
}


/* ============================= */
/* Google Map Section */
/* ============================= */

.contact-map {
    padding: 100px 40px;
    background: #ffffff;
    text-align: center;
}

.contact-map-card {
    margin-top: 60px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

/* ============================= */
/* Dining Hero */
/* ============================= */

.dining-hero {
    background: linear-gradient(135deg, #3b0d0d, #5a1414);
    height: 50vh;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dining-hero .hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.dining-hero .section-preheadline {
    color: #c8a96a;
    margin-bottom: 12px;
    display: inline-block;
}

.dining-hero h1 {
    color: #f5e6c8;
    font-size: 36px;
    margin-bottom: 15px;
}

.dining-hero .section-subtext {
    max-width: 750px;
    margin: 25px auto 0 auto;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(245, 230, 200, 0.9);
}

/* ============================= */
/* Dining Experience Section */
/* ============================= */

.dining-experience {
    padding: 100px 40px;
    background: #ffffff;
}

.dining-experience-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}


.dining-experience-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.dining-experience-image {
    display: flex;
    justify-content: center;
}

.dining-experience-image img {
    width: 85%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


.dining-experience-content h2 {
    font-size: 36px;
    color: #3b0d0d;
    margin-bottom: 20px;
}

.dining-experience-content .section-preheadline {
    margin-bottom: 12px;
}

.dining-experience-content .section-subtext {
    line-height: 1.8;
    color: #555;
}

/* Responsive */

@media (max-width: 992px) {
    .dining-experience-container {
        grid-template-columns: 1fr;
    }
}


/* ============================= */
/* Cuisine Highlights */
/* ============================= */

.cuisine-highlights {
    padding: 120px 40px;
    background: #f9f6f1;
    text-align: center;
}

.cuisine-highlights .section-preheadline {
    display: inline-block;
    margin-bottom: 12px;
}

.cuisine-highlights h2 {
    font-size: 36px;
    color: #3b0d0d;
    margin-bottom: 20px;
}

.cuisine-highlights .section-subtext {
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Tags Wrapper */
.cuisine-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

/* Individual Tag */
.cuisine-tag {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1.5px solid #c8a96a;
    color: #3b0d0d;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: transparent;
    transition: all 0.3s ease;
}

/* Hover Effect */
.cuisine-tag:hover {
    background: #c8a96a;
    color: #1a1a1a;
}

.cuisine-menu-btn {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}


/* ============================= */
/* Signature Dishes */
/* ============================= */

.signature-dishes {
    background: #3b0d0d;
    padding: 100px 40px 70px 40px;
    color: #f5e6c8;
}

.signature-header {
    text-align: center;
    margin-bottom: 80px;
}

.signature-header .section-subtext {
    max-width: 700px;
    margin: 0 auto 60px auto;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(245, 230, 200, 0.9);
}

.signature-dishes .section-heading {
    color: #f5e6c8;
}

.signature-header .section-preheadline {
    display: inline-block;
    margin-bottom: 20px;
}

/* Make subtext readable on dark background */
.signature-dishes .section-subtext {
    color: rgba(245, 230, 200, 0.85);
}

/* Layout */
.signature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/* Left Text */
.signature-text h3 {
    font-size: 25px;
    margin-bottom: 20px;
    color: #f5e6c8;
}

.signature-text p {
    margin-bottom: 40px;
    line-height: 1.8;
    color: rgba(245, 230, 200, 0.85);
}

/* Arrow Button */
.signature-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #c8a96a;
    color: #1a1a1a;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.signature-next:hover {
    transform: scale(1.05);
}

/* Image */
.signature-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
}



/* ============================= */
/* Dining CTA */
/* ============================= */

.dining-cta {
    background: #ffffff;
    padding: 130px 40px;
    text-align: center;
    display: flow-root;
}

.dining-cta-container {
    max-width: 720px;
    margin: 0 auto;
}

.dining-cta .section-preheadline {
    display: block;
    margin-bottom: 22px;
}

.dining-cta h2 {
    font-size: 36px;
    color: #3b0d0d;
    margin: 0 0 24px 0;   /* increase from 16px to 24px */
}

.dining-cta .section-subtext {
    margin: 0 0 48px 0;
}

.dining-cta-btn {
    margin-top: 5px;
}

/* ============================= */
/* Gallery Hero */
/* ============================= */

.gallery-hero {
    background: linear-gradient(135deg, #3b0d0d, #5a1414);
    height: 50vh;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gallery-hero .hero-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-hero .section-preheadline {
    color: #c8a96a;
    margin-bottom: 12px;
}

.gallery-hero h1 {
    color: #f5e6c8;
    font-size: 36px;
    margin-bottom: 15px;
}

.gallery-hero .section-subtext {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(245, 230, 200, 0.9);
}

.gallery-main {
    padding: 120px 0 120px 0;
}

/* ============================= */
/* Custom Lightbox */
/* ============================= */

.custom-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.custom-lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 85%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(200, 169, 106, 0.95);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #b89045;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ============================= */
/* Events Experience Section */
/* ============================= */

.events-experience {
    padding: 100px 40px;
    background: #ffffff;
}

.events-experience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Text Side */

.events-experience-content h2 {
    font-size: 36px;
    color: #3b0d0d;
    margin-bottom: 20px;
}

.events-experience-content .section-subtext {
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Highlights */

.events-highlights {
    list-style: none;
    padding: 0;
}

.events-highlights li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #3b0d0d;
    position: relative;
    padding-left: 22px;
}

.events-highlights li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c8a96a;
    font-weight: bold;
}

/* Image Side */

.events-experience-image {
    display: flex;
    justify-content: center;
}

.events-experience-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Responsive */

@media (max-width: 992px) {
    .events-experience-container {
        grid-template-columns: 1fr;
    }

    .events-experience-image {
        order: -1;
    }
}

/* ============================= */
/* Events Feature Tags */
/* ============================= */

.events-tags {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 16px 24px;
}

.event-tag {
    padding: 7px 18px;
    border: 1px solid #c8a96a;
    background: transparent;
    color: #3b0d0d;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.event-tag:hover {
    background: #c8a96a;
    color: #3b0d0d;
}

/* Mobile */

@media (max-width: 768px) {
    .events-tags {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ============================= */
/* Events Process Section */
/* ============================= */

.events-process {
    padding: 120px 40px;
    background: #f9f6f1;
}

.process-layout {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 100px;
    align-items: start;
}

.process-intro h2 {
    font-size: 36px;
    color: #3b0d0d;
    margin: 20px 0;
}

.process-intro p {
    line-height: 1.8;
    color: #555;
    max-width: 480px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.process-step {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateX(6px);
}

.process-number {
    font-size: 72px;
    font-weight: 700;
    color: #c8a96a;
    opacity: 0.45;
    min-width: 100px;
    line-height: 1;
}

.process-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3b0d0d;
}

.process-content p {
    line-height: 1.7;
    color: #555;
    max-width: 440px;
}

/* ============================= */
/* Mobile */
/* ============================= */

@media (max-width: 992px) {

    .process-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .process-number {
        font-size: 48px;
    }

    .process-step {
        gap: 20px;
    }
}

/* ============================= */
/* Events Specialization Section */
/* ============================= */

.events-specialization {
    padding: 120px 40px;
    background: #ffffff;
}

.specialization-header {
    text-align: center;
    margin-bottom: 80px;
}

.specialization-header h2 {
    font-size: 36px;
    color: #3b0d0d;
    margin-top: 15px;
}

/* Grid Layout */

.specialization-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
}

/* Individual Item */

.specialization-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

/* Icon */

.specialization-icon {
    font-size: 30px;
    color: #c8a96a;
    min-width: 40px;
    line-height: 1;
}

/* Text Content */

.specialization-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #3b0d0d;
}

.specialization-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    max-width: 420px;
}

/* ============================= */
/* Responsive */
/* ============================= */

@media (max-width: 992px) {
    .specialization-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ============================= */
/* Events Final CTA */
/* ============================= */

.events-cta {
    padding: 140px 40px;
    background: #3b0d0d;
    text-align: center;
    color: #ffffff;
    border-top: 4px solid #c8a96a;
}

.events-cta-container {
    max-width: 850px;
    margin: 0 auto;
}

.events-cta h2 {
    font-size: 40px;
    margin: 20px 0;
    color: #ffffff;
}

.events-cta .section-subtext {
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

.events-cta-button {
    margin-top: 20px;
}

/* ============================= */
/* Floating Contact Buttons */
/* ============================= */

.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

/* Base Button Style */

.floating-btn {
    width: 58px;
    height: 58px;
    border-radius: 14px;              /* Rounded square */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.20);
    transition: transform 0.25s ease;
}

.whatsapp-btn i {
    font-size: 34px;   /* Increase white logo size */
}

/* Subtle Hover */

.floating-btn:hover {
    transform: translateY(-3px);
}

/* WhatsApp Button */

.whatsapp-btn {
    background: #25D366;
}

/* Call Button */

.call-btn {
    background: #c8a96a;
}