/* Base Styles and Reset */
:root {
    --primary-gold: #c5a059;
    --active-green: #017a3b;
    --dark-cocoa: #3d2b1f;
    --text-dark: #222222;
    --text-white: #ffffff;
    --header-bg: #ffffff;
    --overlay-color: rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header Styles */
#main-header {
    background: var(--header-bg);
    height: 110px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    height: 100%;
}

/* Navigation Left */
.nav-left {
    flex: 1;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--active-green);
}

.nav-links a.active {
    color: var(--active-green);
}

/* Logo Center */
.logo-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -15%);
    z-index: 1001;
}

.logo-circle {
    width: 140px;
    height: 140px;
    background: var(--dark-cocoa);
    /* Dark brown to match the logo art */
    border-radius: 50%;
    border: 5px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.logo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.logo-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

/* Social Icons Right */
.social-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.pinterest {
    background: #bd081c;
}

.facebook {
    background: #1877f2;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.youtube {
    background: #ff0000;
}

.whatsapp {
    background: #25d366;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    height: calc(100vh - 110px);
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.1);
    /* Start slightly zoomed for motion */
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    animation: kenburns 12s linear infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.25);
    }
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-dots {
    position: absolute;
    bottom: 250px;
    /* Positioned above the hero-text-block */
    left: 40px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    width: 30px;
    border-radius: 10px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent 60%);
    /* Gradient overlay for better text readability */
    z-index: 2;
}

.hero-content-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 550px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.hero-text-block {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Visibility Utilities */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

@media (max-width: 992px) {
    .mobile-only {
        display: flex !important;
    }

    .desktop-only {
        display: none !important;
    }
}

/* Google Rating Badge - Hero Section (Original Web Style) */
.google-rating {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px;
    width: 100%;
    border-radius: 2px 2px 0 0;
}

/* Google Rating Top - In Review Section (Mobile Style) */
.google-rating-top {
    display: none;
    /* Hidden by default, shown via .mobile-only */
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.rating-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-value {
    color: #333;
    font-weight: 700;
    font-size: 1.8rem;
}

.stars {
    color: #fbbc04;
    font-size: 1.3rem;
    display: flex;
    gap: 3px;
}

.review-count {
    color: #0b51c5;
    font-weight: 600;
    font-size: 1.1rem;
}

.intro-text {
    background: rgba(0, 0, 0, 0.65);
    padding: 30px 40px;
    text-align: center;
    width: 100%;
    border-radius: 0 0 2px 2px;
}

.intro-text h1 {
    font-size: 2.5rem;
    /* Half of 5rem */
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.to {
    font-weight: 300;
    font-family: inherit;
}

.brand-name {
    font-size: 2.8rem;
    /* Adjusted close to half of 5rem, keeping it prominent */
    font-weight: 700;
    color: #c5a059 !important;
    /* Gold color */
    letter-spacing: 1px;
    margin: 5px 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.location {
    font-size: 1.2rem;
    /* Reduced from 2rem */
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-info {
    font-size: 0.9rem;
    /* Slightly smaller than 1rem */
    color: #fff;
    opacity: 0.9;
    padding: 0;
    background: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Responsive Design */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 15px;
    }

    .brand-name {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .header-content {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    /* Handled by script */
    .menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 110px;
        left: -20px;
        width: calc(100% + 40px);
        background: #fff;
        padding: 30px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .social-icons {
        display: none;
    }

    .hero {
        height: calc(100vh - 110px);
        display: flex;
        align-items: flex-end;
    }

    .hero-content-wrapper {
        position: relative;
        max-width: 100%;
        width: 100%;
        background: transparent;
        z-index: 3;
    }

    .hero-text-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .logo-circle {
        width: 110px;
        height: 110px;
    }

    .brand-name {
        font-size: 2.2rem;
    }

    .google-rating {
        padding: 10px 15px;
    }

    .hero-dots {
        bottom: 280px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Reviews Section Mobile */
    .review-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .reviews-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .say-header {
        text-align: center;
    }

    .say-header::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .say-about {
        font-size: 2.8rem;
    }

    .brand-rating-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .compact-stars {
        justify-content: center;
    }

    .google-cta {
        text-align: center;
    }

    .reviews-right {
        max-width: 100%;
        width: 100%;
    }

    .reviews-controls {
        display: none;
        /* Hide side arrows on mobile, use dots/touch */
    }

    .review-card {
        padding: 20px;
    }

    .rev-images {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    #main-header {
        height: 80px;
    }

    .hero {
        height: calc(100vh - 80px);
    }

    .intro-text {
        padding: 20px 15px;
    }

    .brand-name {
        font-size: 1.8rem;
    }

    .intro-text h1 {
        font-size: 1.6rem;
    }

    .location {
        font-size: 1rem;
    }

    .hero-dots {
        bottom: 240px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    /* Smaller Review Section for Mobile */
    .say-about {
        font-size: 2.22rem;
    }

    .what-people {
        font-size: 1.3rem;
    }

    .reviews-section {
        padding: 40px 0;
    }

    .review-layout {
        gap: 20px;
    }
}

/* Reviews Section - Modern Split Layout */
.reviews-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.review-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.reviews-left {
    flex: 1;
    max-width: 450px;
}

.say-header {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.say-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #8b7355;
    /* Brownish underline */
}

.what-people {
    font-size: 1.8rem;
    color: #8b7355;
    margin: 0;
    font-weight: 400;
}

.say-about {
    font-size: 3.5rem;
    color: var(--active-green);
    font-weight: 800;
    /* Extra bold */
    margin: 0;
    line-height: 1.1;
}

.brand-rating-box {
    margin: 25px 0 35px;
}

.brand-rating-box h3 {
    font-size: 1.6rem;
    color: #333;
    font-weight: 700;
    /* Bolded as per image */
    margin-bottom: 5px;
}

.compact-stars {
    display: flex;
    align-items: center;
    gap: 10px;
}

.compact-stars .rating-value {
    font-size: 1rem;
    color: #333;
    /* Darker as per image */
    font-weight: 600;
}

.compact-stars .stars {
    font-size: 0.9rem;
    color: #fbbc04;
    display: flex;
    gap: 2px;
}

.compact-stars .review-count {
    font-size: 0.9rem;
    color: #0b51c5;
    text-decoration: none;
    font-weight: 500;
}

.btn-write-review {
    display: inline-block;
    background: #003fff;
    /* More vibrant blue */
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 63, 255, 0.2);
}

.btn-write-review:hover {
    background: #001ecc;
    transform: translateY(-2px);
}

.reviews-right {
    flex: 1;
    max-width: 650px;
}

.reviews-wrapper {
    position: relative;
    width: 100%;
}

.reviews-container {
    width: 100%;
    overflow: hidden;
    padding: 10px;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Updated Review Card Styles */
.review-card {
    min-width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #fff5e6;
    /* Light peach border from image */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.rev-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.rev-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.rev-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rev-user-info {
    display: flex;
    flex-direction: column;
}

.rev-user-info .name {
    font-weight: 700;
    color: #333;
    font-size: 1.05rem;
}

.rev-user-info .badge {
    font-size: 0.85rem;
    color: #777;
}

.rev-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.compact-stars .stars,
.rev-item-meta .stars,
.rev-stars {
    font-size: 0.9rem;
    color: #ffc107 !important;
    /* Vibrant Gold/Yellow */
    display: flex;
    gap: 2px;
}

.stars i,
.rev-stars i {
    color: #ffc107 !important;
}

.rev-item-meta .date {
    font-size: 0.85rem;
    color: #999;
}

.rev-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 20px;
}

.rev-text .more {
    color: #0b51c5;
    font-weight: 600;
    cursor: pointer;
}

.rev-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.rev-img-item {
    aspect-ratio: 1;
    border-radius: 2px;
    overflow: hidden;
}

.rev-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Controls Styling */
.reviews-controls {
    position: absolute;
    top: 50%;
    width: calc(100% + 100px);
    left: -50px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 10;
}

.control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #444;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.control-btn:hover {
    background: var(--active-green);
    color: #fff;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-gold);
    width: 30px;
    border-radius: 10px;
}

.error-msg {
    color: #666;
    font-size: 1rem;
    padding: 20px;
    text-align: center;
    width: 100%;
}

/* Memories Section */
.memories-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.memories-section .say-header {
    text-align: center;
    margin-bottom: 50px;
}


.memories-section .say-header::after {
    display: none;
    /* No underline in screenshot */
}

.memories-section .what-people {
    font-size: 1.4rem;
    color: #8b7355;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.memories-section .say-about {
    font-size: 4rem;
    color: #006431;
    /* Darker green like Memories in image */
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
}

.memories-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.memories-track {
    display: grid;
    grid-template-rows: repeat(2, 400px);
    grid-auto-flow: column;
    grid-auto-columns: calc(25vw - 1.5px);
    /* Forces exactly 4 items across screen */
    gap: 2px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.memory-card {
    position: relative;
    overflow: hidden;
}

.memory-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.memory-card:hover img {
    transform: scale(1.05);
}

.memory-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.mem-user-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    overflow: hidden;
    flex-shrink: 0;
}

.mem-user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mem-user-info {
    display: flex;
    flex-direction: column;
}

.mem-user-info .name {
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.1;
}

.mem-user-info .time {
    font-size: 0.65rem;
    opacity: 0.9;
}

/* Memories Controls */
.memories-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 20px;
    /* Moves buttons 20px inside from the edges */
}

.mem-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ead8b1;
    /* Beige from screenshot */
    border: none;
    color: #006431;
    /* Green arrow icon */
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    font-size: 1.2rem;
}

.mem-control-btn:hover {
    background: #006431;
    color: #fff;
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .memories-track {
        grid-auto-columns: calc(33.333vw - 1.5px);
    }
}

@media (max-width: 992px) {
    .memories-track {
        grid-auto-columns: calc(50vw - 1.5px);
    }

    .memories-section .say-about {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .memories-track {
        grid-auto-columns: 100vw;
        grid-template-rows: repeat(1, 300px);
    }

    .memories-section .say-about {
        font-size: 2.2rem;
    }
}

/* Google CTA */
.google-cta {
    text-align: left;
    /* Changed from center */
    margin-top: 30px;
    /* Reduced from 60px */
}

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dark-cocoa);
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-google:hover {
    background: var(--active-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Menu Categories Grid */
.menu-categories {
    background: #000;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.menu-item {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.menu-item:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.menu-frame {
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    border: 1px solid rgba(197, 160, 89, 0.5);
    /* Gold border from user screenshot */
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0;
    pointer-events: none;
}

.menu-info-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 30px;
    text-align: right;
    pointer-events: auto;
    width: 70%;
    transition: var(--transition);
}

.menu-info-box h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.btn-more {
    display: inline-block;
    background: #d4ae6b;
    /* Gold button */
    color: #1a1a1a;
    padding: 6px 25px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-more:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Responsive Menu */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .menu-item {
        height: 300px;
    }

    .menu-info-box {
        width: 85%;
        padding: 15px;
    }

    .menu-info-box h3 {
        font-size: 1.2rem;
    }
}

/* Memories Section with Swiper */
.memories-swiper {
    width: 100%;
    height: 800px;
    margin: 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .memories-swiper {
        height: 600px;
    }
}

@media (max-width: 576px) {
    .memories-swiper {
        height: 350px;
    }
}

.memories-swiper .swiper-slide {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.memory-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    flex: 1;
    opacity: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Lightbox Swiper Styling */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    z-index: 10000;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide-zoom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-swiper img {
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    transition: 0.3s;
}

.lightbox-nav-btn:hover {
    background: var(--primary-gold);
    color: #333;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@media (max-width: 768px) {
    .lightbox-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }
}

/* Founder Section Styling */
/* Founder Section - Luxury Coffee Motion Graphic Style */
.founder-section-redesign {
    padding: 120px 0;
    overflow: hidden;
    background: #fff;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

/* Floating Luxury Particles */
.founder-section-redesign::before,
.founder-section-redesign::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: luxuryGlow 10s infinite alternate;
}

.founder-section-redesign::before {
    top: 5%;
    left: 5%;
}

.founder-section-redesign::after {
    bottom: 5%;
    right: 5%;
    animation-delay: -5s;
}

@keyframes luxuryGlow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.5) translate(30px, 30px);
        opacity: 0.6;
    }
}

.founder-main-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.founder-main-header p {
    font-size: 1rem;
    color: #8b7355;
    margin-bottom: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.founder-main-header h2 {
    font-size: 4.5rem;
    color: #006431;
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.founder-split-grid {
    display: flex;
    width: 100%;
    margin: 0 auto;
    gap: 0;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
}

.founder-panel {
    flex: 1;
    padding: 100px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 850px;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    perspective: 1500px;
    /* Enhanced 3D depth */
}


.founder-section-redesign.animate .founder-panel {
    opacity: 1;
    transform: translateY(0);
}

.dark-panel {
    background: linear-gradient(rgba(26, 15, 10, 0.94), rgba(26, 15, 10, 0.94)),
        url('https://www.transparenttextures.com/patterns/coffee-beans.png');
    background-color: #1a0f0a;
    color: #fff;
}

.light-panel {
    background: #fdfaf5;
    color: #1a0f0a;
}

.founder-content-box {
    width: 100%;
    max-width: 90%;
    text-align: center;
    z-index: 3;
}

.motion-graphic-area {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.motion-graphic-area {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 750px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.motion-graphic-area canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Move behind the image */
    pointer-events: none;
}





.profile-frame {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    width: 100%;
    height: 700px;
    /* Consistent container height */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.profile-frame img {
    border-radius: 0;
    border: none;
    width: auto;
    height: 100%;
    max-height: 700px;
    /* Unified max-height for both */
    object-fit: contain;
}

/* Remove inconsistent overrides for Narendra */
.light-panel .profile-frame,
.light-panel .profile-frame img {
    height: 700px;
    max-height: 700px;
}


.splash-effect {
    display: none;
}


.splash-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 180%;
    z-index: 1;
    opacity: 0.8;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 30px rgba(212, 174, 107, 0.3));
    animation: luxurySplash 15s infinite linear;
}

@keyframes luxurySplash {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(-50%, -52%) rotate(5deg) scale(1.05);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
}

.splash-coffee {
    background-image: url('https://images.rawpixel.com/image_png_800/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIzLTA3L3Jhd3BpeGVsX29mZmljZV8yN19waG90b19vZl9jb2ZmZWVfcm9hc3RlZF9iZWFuc19leHBsb3Npb25faXNvbGE_Y2M1YzU0N2YtMjVlOC00NGI3LWFjODEtNTRiYjg3OTQyZGI0LnBuZw.png');
    transform: translate(-50%, -50%) scale(1.6);
}

.splash-tea {
    background-image: url('https://pngimg.com/uploads/splash/splash_PNG25.png');
}

.name-display {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(to bottom, #fff, #d4ae6b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.light-panel .name-display {
    background: linear-gradient(to bottom, #2c1810, #8b7355);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.phone-display {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #d4ae6b;
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.light-panel .bio-text {
    color: rgba(44, 24, 16, 0.8);
    background: rgba(44, 24, 16, 0.05);
    border: 1px solid rgba(44, 24, 16, 0.1);
}

.pagination-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.pagination-indicators .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(128, 128, 128, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-indicators .dot.active {
    background: #d4ae6b;
    width: 35px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(212, 174, 107, 0.6);
}

@media (max-width: 1024px) {
    .founder-split-grid {
        flex-direction: column;
        border-radius: 0;
    }

    .founder-panel {
        padding: 80px 30px;
        min-height: auto;
    }

    .founder-main-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .name-display {
        font-size: 1.8rem;
    }

    .motion-graphic-area {
        width: 300px;
        height: 300px;
    }

    .profile-frame {
        width: 180px;
        height: 180px;
    }
}

/* Thanks for Visit & Opening Hours Section */
.thanks-section {
    background: #1a0f0a;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Opening Hours Bar */
.opening-hours-bar {
    display: flex;
    width: 100%;
    background: #fff;
    border-top: 5px solid var(--primary-gold);
}

.day-slot {
    flex: 1;
    text-align: center;
    padding: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.day-slot.current-day-highlight {
    background: #fff;
    border-top: 5px solid var(--primary-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    z-index: 5;
}

.day-slot.current-day-highlight .day-info {
    color: #006431;
    font-weight: 800;
}

.special-breakfast-box {
    height: 160px;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.special-breakfast-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.day-slot:hover .special-breakfast-box img {
    transform: scale(1.1);
}

.closed-overlay {
    width: 100%;
    height: 100%;
    background: #e31e24;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.day-slot .day-info {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 15px 5px;
    color: #444;
}

.day-slot .date {
    font-weight: 400;
    opacity: 0.6;
}

.status-box {
    margin-top: auto;
    padding: 12px 0;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}

.green-slot .status-box {
    background: var(--primary-gold);
    /* Sunday now uses Gold instead of Green */
}

.gold-slot .status-box {
    background: #d4ae6b;
    color: #1a0f0a;
}

.red-slot .status-box {
    background: #e31e24;
}

.red-slot .day-info {
    color: #fff;
    background: #e31e24;
    padding: 5px;
    margin-bottom: 5px;
}

/* Thanks Content Layout */
.thanks-content {
    padding: 120px 0;
    background-image: linear-gradient(to right, rgba(26, 15, 10, 0.3), rgba(26, 15, 10, 0.9)),
        url('public/image/footer/footer-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.thanks-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.visual-left {
    flex: 1;
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium Steam Effect */
.steam-effect {
    position: absolute;
    bottom: 25%;
    left: 20%;
    width: 100px;
    height: 150px;
    background: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    filter: blur(15px);
    animation: steamMove 8s infinite ease-out;
    pointer-events: none;
}

@keyframes steamMove {
    0% {
        transform: translateY(0) scale(1) translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    50% {
        transform: translateY(-100px) scale(1.5) translateX(20px);
        opacity: 0.2;
    }

    100% {
        transform: translateY(-200px) scale(2) translateX(-20px);
        opacity: 0;
    }
}

.visual-left img {
    display: none;
    /* Hidden because it's now in the background */
}

.visual-left:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.brand-center {
    flex: 1;
    text-align: center;
}

.footer-logo {
    width: 220px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    image-rendering: -webkit-optimize-contrast;
    /* Improves clarity on high-DPI screens */
    backface-visibility: hidden;
    transform: translateZ(0);
}

.tagline {
    color: #d4ae6b;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-right {
    flex: 1;
    color: #fff;
    text-align: right;
}

.thanks-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.1;
}

.white-text {
    color: #fff;
}

.green-text {
    color: #006431;
}

.brand-display {
    font-size: 2.8rem;
    color: #d4ae6b;
    font-weight: 800;
    margin-bottom: 10px;
}

.address-display {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.phone-meta {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 992px) {
    .opening-hours-bar {
        flex-wrap: wrap;
    }

    .day-slot {
        flex: 0 0 33.33%;
        border-bottom: 1px solid #eee;
    }

    .thanks-layout {
        flex-direction: column;
        text-align: center;
    }

    .contact-right {
        text-align: center;
    }

    .visual-left img {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .day-slot {
        flex: 0 0 50%;
    }

    .thanks-title {
        font-size: 2.22rem;
    }

    .brand-display {
        font-size: 2rem;
    }
}