/*
Theme Name: MVK Heritage Foods
Theme URI: https://mvkhotel.com/
Author: Admin
Description: Premium custom theme for MVK Heritage Foods, Kannur.
Version: 1.1
License: GNU General Public License v2 or later
Text Domain: mvk-hotel
*/

:root {
    --primary: #8B1A1A;
    /* Rich Burgundy */
    --primary-dark: #5C0E0E;
    --secondary: #D4A853;
    /* Warm Gold */
    --secondary-light: #E8C87A;
    --dark: #1A1A1A;
    /* Deep Black */
    --dark-soft: #2D2D2D;
    --base: #FEFDFB;
    /* Warm White */
    --base-alt: #F5F3EF;
    --text: #333333;
    --text-muted: #777777;
    --white: #ffffff;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container: 1280px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--base);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    padding-top: 130px;
}

@media (max-width: 900px) {
    body {
        padding-top: 110px;
    }
}

/* Fix gap on home page */
html body.home {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Marcellus', serif;
    color: var(--dark);
    font-weight: 400;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

/* Common Components */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(139, 26, 26, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 26, 26, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* Header */
header {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 130px;
    /* More airy, premium height for larger logo */
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

/* Admin Bar Fix */
body.admin-bar header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar header {
        top: 46px;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 0.15em;
    color: var(--primary);
}

.logo-img {
    max-height: 140px;
    /* Increased logo size as requested */
    height: auto;
    width: auto;
    transition: all 0.4s ease;
}

.header-cta .btn-primary {
    padding: 12px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: var(--transition);
}

.header-cta .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(139, 26, 26, 0.4);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2000;
    position: relative;
    width: 40px;
    height: 40px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--dark);
    left: 0;
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Desktop Navigation Wrapper */
@media (min-width: 901px) {
    .nav-menu-wrapper {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .mobile-menu-cta {
        display: none;
    }
}

.mobile-menu-cta {
    display: none;
}

/* Location Section */
.location-section {
    background: linear-gradient(135deg, #faf9f6 0%, #f0ebe3 100%);
    padding: 100px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.location-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #8b1518 100%);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(109, 14, 17, 0.3);
}

.card-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.icon-emoji {
    font-size: 2.5rem;
}

.location-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.location-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary) !important;
}

.highlight-text {
    color: var(--secondary) !important;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Order Options */
.order-options {
    background: var(--dark);
    padding: 50px;
    border-radius: 16px;
    margin-bottom: 40px;
    text-align: center;
}

.order-info h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.order-info>p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.order-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.feature-tag {
    background: rgba(197, 160, 89, 0.2);
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Visit CTA */
.visit-cta {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--secondary);
}

.visit-cta h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.visit-cta>p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

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

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

    .order-options {
        padding: 30px 20px;
    }

    .visit-cta h3 {
        font-size: 1.5rem;
    }
}

/* About Preview Enhanced */
.about-preview {
    padding: 120px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead-text {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 20px;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--secondary);
    opacity: 0.3;
    border-radius: 50%;
    z-index: -1;
}

/* Stats Section */
.stats-section {
    background: var(--primary);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: var(--white);
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 10px 30px rgba(212, 168, 83, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.85;
    font-weight: 500;
}

/* Promise Section - Light Theme */
.promise-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f6f3 100%);
    position: relative;
}

.promise-section .section-title span {
    color: var(--primary);
}

.promise-section .section-title h2 {
    color: var(--dark);
}

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

.promise-card {
    background: var(--white);
    padding: 50px 35px;
    text-align: center;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
}

.promise-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(109, 14, 17, 0.15);
}

.promise-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), #8b1518);
    border-radius: 20px;
    font-size: 2.5rem;
    box-shadow: 0 15px 35px rgba(109, 14, 17, 0.25);
    transform: rotate(-5deg);
    transition: var(--transition);
}

.promise-card:hover .promise-icon {
    transform: rotate(0deg) scale(1.05);
}

.promise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.promise-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .stat-number {
        font-size: 2.5rem;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }
}

/* Venues Section */
.venues-section {
    padding: 120px 0;
    background: var(--dark);
}

.venues-section .section-title span {
    color: var(--secondary);
}

.venues-section .section-title h2 {
    color: var(--white);
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.venue-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.venue-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.venue-card:hover .venue-image img {
    transform: scale(1.1);
}

.venue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(109, 14, 17, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.venue-card:hover .venue-overlay {
    opacity: 1;
}

.venue-content {
    padding: 30px;
}

.venue-category {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.venue-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.venue-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.venue-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.venue-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.venues-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.venues-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f6f3 0%, #fff 100%);
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: var(--base);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 26, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-hover span {
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-item:hover .gallery-hover span {
    transform: translateY(0);
}

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

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

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

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--secondary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #8b1518);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

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

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

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

    .venue-image {
        height: 220px;
    }
}

/* Nav cleaned up */
nav ul {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark);
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active-link::after {
    width: 100%;
}

nav ul li a {
    position: relative;
    z-index: 10;
    cursor: pointer;
}

nav ul li a.active-link,
nav ul li.current-menu-item a,
nav ul li.current_page_item a {
    color: var(--primary);
    font-weight: 600;
}



/* Hero Slider */
.hero-slider {
    position: relative;
    height: 110vh;
    min-height: 1160px;
    overflow: hidden;
    /* Pull back up to sit under fixed header or fit viewport */
    margin-top: -100px;
    /* Force pull-up to cover any residual gap */
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.3));
}

.slide-content {
    position: relative;
    z-index: 20;
    /* Increased z-index to sit above controls */
    max-width: 700px;
    color: var(--white);
}

.slide-content span {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease forwards;
}

.slide-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0;
    max-width: 500px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.slide.active .slide-content span,
.slide.active .slide-content h2,
.slide.active .slide-content p {
    opacity: 1;
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
    pointer-events: auto;
    /* Ensure buttons are clickable */
    position: relative;
    z-index: 21;
    /* Ensure sits above everything else */
}

.slide.active .hero-btns {
    opacity: 1;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
    /* Allow clicks to pass through */
}

.slider-btn {
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    /* Re-enable clicks for buttons */
}

.slider-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Slide Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    /* Header & Logo Fixes */
    header {
        height: 110px;
        /* Increased height for mobile */
    }

    .logo-img {
        max-height: 100px;
        width: auto;
    }

    /* Hero Slider Fixes */
    .hero-slider {
        height: 100vh;
        min-height: 600px;
        margin-top: -80px;
    }

    .slide-content {
        padding: 0 20px;
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }

    .slide-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
        max-width: 100%;
        opacity: 1;
        line-height: 1.5;
        /* Force opacity for visibility */
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    /* Footer Logo Fix */
    .footer-logo-img {
        width: 200px;
        /* Increased footer logo */
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .footer-col {
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-col h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .footer-col ul li a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
    }
}

/* Sections */
section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-title span {
    display: block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.section-title h2 {
    font-size: 2.8rem;
    line-height: 1.2;
}

/* Specialties Grid */
.specialty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.specialty-card {
    background: var(--white);
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.specialty-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.specialty-image {
    height: 350px;
    overflow: hidden;
    margin-bottom: 25px;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

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

.specialty-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.specialty-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr 1.5fr;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo-img {
    height: 150px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.footer-col p {
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Responsive Refinements */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    :root {
        --container: 100%;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col:first-child,
    .footer-col:last-child {
        grid-column: span 2;
    }

    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    header {
        height: 110px;
    }

    .logo-img {
        max-height: 100px;
    }

    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        /* Ensure toggle is always above everything */
    }

    .header-cta {
        display: block;
        order: 2;
    }

    .header-cta .btn-primary {
        padding: 10px 20px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .main-navigation {
        order: 3;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .menu-toggle {
        display: flex !important;
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
    }

    .logo {
        order: 1;
        flex: 0 1 auto;
        max-width: 150px;
    }

    .logo-img {
        max-height: 100px;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        z-index: 1500;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        padding: 100px 40px;
        overflow-y: auto;
        /* Allow scrolling if menu is tall */
    }

    .nav-menu-wrapper.active {
        right: 0;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        display: flex;
        gap: 20px;
        margin-bottom: 0;
    }

    nav ul li a {
        font-family: 'Outfit', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--dark);
        transition: color 0.3s ease;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .venues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 110px;
    }

    header {
        height: 110px;
        /* Increased from 70px to accommodate larger logo */
        padding: 0;
    }

    .logo-img {
        max-height: 100px;
    }

    section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }

    .specialty-grid {
        grid-template-columns: 1fr;
    }

    .venues-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col:first-child,
    .footer-col:last-child {
        grid-column: span 1;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 3rem;
    }

    .hero-slider {
        height: 100vh;
        min-height: 600px;
        margin-top: -80px;
        /* Pull behind transparent/white header */
    }

    .hero-slider .container {
        padding: 120px 20px 0;
        /* Push text down below header */
        text-align: center;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .slide {
        align-items: flex-start;
        /* Start from top to control spacing */
    }

    .slide-overlay {
        background: rgba(0, 0, 0, 0.6);
        /* Darker for better text readability */
    }

    .slide-content {
        margin: 0 auto;
        padding-top: 50px;
        /* Fine-tune text vertical position */
    }

    .slide-content span,
    .slide-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slider h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-btns {
        justify-content: center;
        padding-bottom: 40px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .header-cta {
        display: none !important;
    }

    .logo-img {
        max-height: 100px;
    }

    .nav-container {
        padding: 0 15px;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .logo-img {
        max-height: 95px;
    }

    .hero-slider {
        height: 90vh;
        align-items: flex-start;
        padding-top: 100px;
    }

    .hero-slider .slide-overlay {
        background: rgba(0, 0, 0, 0.7);
    }

    .hero-slider h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 15px 30px;
        font-size: 0.8rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .logo-img {
        max-height: 120px;
    }
}

/* Page Template Styles */
.lead-text-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 100px;
}

.values-section {
    margin-top: 120px;
}

.values-grid {
    grid-template-columns: repeat(4, 1fr);
}

.location-page-grid {
    grid-template-columns: 1fr 2fr;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info-grid {
    margin-top: 100px;
    grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 768px) {
    .lead-text-box {
        margin-bottom: 60px;
    }

    .values-section {
        margin-top: 80px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .location-page-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-container {
        padding: 30px !important;
    }

    .about-content {
        flex-direction: column !important;
    }

    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}


/* Dark Theme Pages (Menu) */
/* Menu Page Styles - Modern Version */
/* Menu Page Styles - Modern Version */
.dark-theme-page {
    background: #111;
    color: var(--white);
    min-height: 100vh;
    padding-bottom: 120px;
}

.menu-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0px;
    margin-top: 0;
    /* Account for fixed white header */
}

.menu-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), #111);
    z-index: 2;
}

.menu-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.menu-hero-content .subtitle {
    display: block;
    color: var(--secondary);
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.menu-hero-content h1 {
    font-size: 5rem;
    color: white;
    margin-bottom: 20px;
    font-family: 'Marcellus', serif;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.menu-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* Signature Specials */
.signature-specials {
    padding-top: 100px;
    background: #111;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.signature-card {
    background: #1e1e1e;
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.signature-card:hover {
    transform: translateY(-20px);
    border-color: var(--secondary);
    box-shadow: 0 30px 60px rgba(139, 21, 24, 0.2);
}

.signature-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.signature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.signature-card:hover .signature-img img {
    transform: scale(1.1);
}

.signature-info {
    padding: 30px;
    text-align: center;
}

.signature-info h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-family: 'Marcellus', serif;
}

.signature-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sig-price {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    width: 100%;
}

/* Menu Tabs */
.menu-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 80px auto 100px;
    position: sticky;
    top: 100px;
    z-index: 100;
    background: rgba(17, 17, 17, 0.8);
    padding: 25px 40px;
    backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: fit-content;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.menu-nav-tabs a {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.menu-nav-tabs a:hover,
.menu-nav-tabs a.active {
    color: var(--secondary);
}

/* Category Header */
.category-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cat-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 18px;
    border: 1px solid rgba(212, 168, 83, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cat-title h3 {
    font-size: 2.2rem;
    color: white;
    margin: 0;
    font-family: 'Marcellus', serif;
}

.cat-title p {
    color: var(--secondary);
    margin: 5px 0 0;
    opacity: 0.8;
}

/* Menu Items List - Classic Style */
.menu-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.menu-item-v2 {
    margin-bottom: 35px;
}

.menu-item-main {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 8px;
}

.item-name {
    color: white;
    font-size: 1.25rem;
    margin: 0;
    font-family: 'Marcellus', serif;
    font-weight: 400;
    white-space: nowrap;
}

.item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    margin: 0 15px;
    position: relative;
    top: -4px;
}

.item-price {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.15rem;
}

.item-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Menu Footer CTA - Premium Design */
.menu-footer-cta {
    margin-top: 100px;
    margin-bottom: 0;
    padding: 100px 40px;
    background: #111;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/shared/1000150059.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    filter: brightness(0.7);
}

.menu-footer-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.3) 0%, rgba(17, 17, 17, 0.9) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-label {
    display: block;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.menu-footer-cta h3 {
    font-size: 4rem;
    color: white;
    margin-bottom: 25px;
    font-family: 'Marcellus', serif;
}

.menu-footer-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.cta-buttons .btn {
    min-width: 200px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 700;
}

@media (max-width: 768px) {
    .menu-footer-cta h3 {
        font-size: 2.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .menu-footer-cta {
        padding: 60px 20px;
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .menu-footer-cta h3 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .menu-footer-cta {
        padding: 50px 20px;
    }
}

/* Responsive Menu */
@media (max-width: 1024px) {
    .menu-hero-content h1 {
        font-size: 3.5rem;
    }

    .signature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-row {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .menu-hero-content h1 {
        font-size: 2.8rem;
    }

    .signature-grid {
        grid-template-columns: 1fr;
    }

    .menu-nav-tabs {
        gap: 15px;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 15px 20px;
    }

    .menu-nav-tabs a {
        white-space: nowrap;
    }

    .menu-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .item-name {
        font-size: 1.1rem;
        white-space: normal;
    }
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

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

.mb-60 {
    margin-bottom: 60px;
}

.text-secondary {
    color: var(--secondary);
}

.text-white {
    color: white;
}

/* Header Transitions & Menu Page Overrides */
header {
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

header.header-scrolled {
    background: var(--white);
    height: 155px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

header.header-scrolled .logo-img {
    max-height: 120px;
}

/* Menu Page Specific Header - Reverted to Standard */
/* Standard theme header styles will apply (White background) */

/* Menu Page Hero Refinements */
.menu-hero::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--secondary), transparent);
    z-index: 5;
    animation: scrollDrip 2s infinite;
}

@keyframes scrollDrip {
    0% {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
}

/* Ornamental Divider */
.menu-category-section::after {
    content: "❖";
    display: block;
    text-align: center;
    color: var(--secondary);
    font-size: 1.5rem;
    margin-top: 60px;
    opacity: 0.5;
}

.menu-category-section:last-child::after {
    display: none;
}

/* Badge System */
.badge-sig {
    display: inline-block;
    font-size: 0.6rem;
    background: var(--secondary);
    color: var(--dark);
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: 'Outfit', sans-serif;
    margin-left: 10px;
    vertical-align: middle;
    transform: translateY(-2px);
}

/* Refined Menu Item Hover */
.menu-item-v2 {
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.menu-item-v2 .item-name {
    color: var(--white);
}

.menu-item-v2 .item-desc {
    color: rgba(255, 255, 255, 0.7);
}

.menu-item-v2 .item-price {
    color: var(--secondary);
}

@media (min-width: 901px) {
    .menu-item-v2:hover {
        background: rgba(255, 255, 255, 0.04);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        z-index: 2;
        transform: translateX(10px);
    }

    .menu-item-v2:hover .item-name {
        color: var(--secondary);
    }
}

/* Update spacing for sticky nav offsets */
.menu-category-section {
    scroll-margin-top: 180px;
}

/* Inner Page Header - Restored */
.inner-header {
    padding: 140px 0 80px;
    background-color: var(--dark);
    position: relative;
    margin-bottom: 80px;
    margin-top: 0;
    /* Account for fixed header */
}

.inner-header h2 {
    color: var(--white);
    font-size: 3.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.inner-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, #2c0b0e 100%);
    opacity: 0.9;
    z-index: 1;
}

/* Service Card Styles */
.main-service-card {
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    height: 100%;
    transition: var(--transition);
    color: var(--dark);
}

.main-service-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.main-service-card p {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

@media (min-width: 901px) {
    .specialty-card:hover .main-service-card {
        background: var(--dark);
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .specialty-card:hover .main-service-card h3 {
        color: var(--secondary);
    }

    .specialty-card:hover .main-service-card p {
        color: rgba(255, 255, 255, 0.8);
    }

    .specialty-card:hover .service-icon {
        transform: scale(1.1);
    }
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

/* Luxury Catering Section V3 */
.catering-section-premium {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.catering-grid-v3 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.catering-visual-v3 {
    position: relative;
}

.visual-main {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.visual-main img {
    transition: transform 0.6s ease;
}

.catering-visual-v3:hover .visual-main img {
    transform: scale(1.05);
}

.visual-accent {
    position: absolute;
    width: 280px;
    height: 350px;
    right: -60px;
    top: -60px;
    z-index: 1;
    overflow: hidden;
    border-radius: 4px;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-md);
}

.visual-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catering-experience-badge {
    position: absolute;
    bottom: -40px;
    left: -40px;
    z-index: 3;
    background: var(--primary);
    color: var(--white);
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(139, 26, 26, 0.3);
}

.catering-experience-badge .count {
    display: block;
    font-size: 2.8rem;
    font-family: 'Marcellus', serif;
    line-height: 1;
    margin-bottom: 5px;
}

.catering-experience-badge .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.section-title-alt {
    margin-bottom: 30px;
}

.section-title-alt .subtitle {
    display: block;
    color: var(--secondary);
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.section-title-alt h2 {
    font-size: 3.8rem;
    line-height: 1.1;
    color: var(--dark);
}

.catering-info-v3 .description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 50px;
}

.services-list-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.service-item-v3 {
    display: flex;
    gap: 15px;
    position: relative;
    padding-left: 20px;
}

.service-item-v3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}

.service-item-v3 h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.service-item-v3 p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.catering-actions-v3 {
    display: flex;
    gap: 20px;
}

@media (max-width: 1200px) {
    .catering-grid-v3 {
        gap: 60px;
    }

    .visual-accent {
        display: none;
    }
}

@media (max-width: 1024px) {
    .catering-section-premium {
        padding: 100px 0;
    }

    .catering-grid-v3 {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .catering-visual-v3 {
        max-width: 600px;
        margin: 0 auto;
    }

    .section-title-alt h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .services-list-v3 {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .catering-experience-badge {
        left: 0;
        bottom: -20px;
        padding: 25px;
    }

    .catering-experience-badge .count {
        font-size: 2.2rem;
    }

    .catering-actions-v3 {
        flex-direction: column;
    }

    .catering-actions-v3 .btn {
        width: 100%;
        text-align: center;
    }
}

/* Services Page Extension */
.catering-v2 {
    background: var(--dark);
    padding: 80px 60px;
    /* Increased side padding */
    color: white;
    border-radius: 20px;
    margin-bottom: 80px;
    position: relative;
    overflow: visible;
    /* Ensure badge isn't cut off */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.catering-v2 .catering-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Dark Mode Catering Fixes */
.catering-v2 .label {
    color: var(--secondary) !important;
}

.catering-v2 h2 {
    color: white !important;
}

.catering-v2 .catering-desc {
    color: rgba(255, 255, 255, 0.8) !important;
}

.catering-v2 .catering-list-premium li {
    color: white;
    border-color: rgba(255, 255, 255, 0.1);
}

.catering-v2 .catering-list-premium li span {
    color: var(--secondary);
}

@media (max-width: 1024px) {
    .catering-art-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .catering-content-premium {
        padding-right: 0;
    }

    .catering-section {
        padding: 100px 0;
    }

    .catering-content-premium h2 {
        font-size: 3rem;
    }

    .catering-floating-badge {
        right: 0;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .specialty-grid {
        grid-template-columns: 1fr !important;
    }

    .amenities-section .values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .faq-item {
        background: #fafafa;
        padding: 20px;
        border-radius: 10px;
    }

    .venues-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Venue Section - Premium ZigZag Layout */
.venues-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.venue-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.venue-row.reverse {
    flex-direction: row-reverse;
}

.venue-col-img {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.venue-col-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.venue-row:hover .venue-col-img img {
    transform: scale(1.05);
}

.venue-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: var(--dark);
    padding: 8px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.venue-col-text {
    flex: 1;
}

.venue-col-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-family: 'Marcellus', serif;
}

.venue-desc {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.venue-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.venue-features-list li {
    position: relative;
    padding-left: 25px;
    color: #333;
    font-weight: 500;
}

.venue-features-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.2rem;
}

.venue-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.venue-link:hover {
    border-bottom-color: var(--primary);
    gap: 15px;
}

/* Services Page Specific Responsive */
@media (max-width: 900px) {

    .venue-row,
    .venue-row.reverse {
        flex-direction: column;
        text-align: left;
        gap: 30px;
    }

    .venues-list {
        gap: 60px;
    }

    .venue-col-img img {
        height: 300px;
    }
}

@media (max-width: 768px) {

    .specialty-grid,
    .amenities-grid,
    .faq-grid {
        grid-template-columns: 1fr !important;
    }

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

    .process-step::after {
        display: none;
    }
}

/* Service Intro */
.service-intro {
    max-width: 800px;
    margin: 0 auto 80px;
}

.sub-heading {
    display: block;
    color: var(--secondary);
    font-family: 'Marcellus', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    counter-reset: process-counter;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    z-index: -1;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.process-step h4 {
    margin-bottom: 15px;
    color: var(--dark);
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.amenity-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.amenity-card:hover {
    border-bottom-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.amenity-card h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-left: 3px solid var(--secondary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border-radius: 0 8px 8px 0;
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
    color: white;
    padding: 80px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-subtitle {
    display: block;
    color: var(--secondary);
    font-family: 'Marcellus', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.services-cta h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 25px;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

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

.mb-120 {
    margin-bottom: 120px;
}

.btn-outline-light {
    display: inline-block;
    padding: 18px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: var(--transition);
}

/* Full Width Venues Section */
.venues-section.full-width-layout {
    background-color: #f6f6f6;
    padding: 100px 0;
    margin: 80px 0;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* =========================================
   Home Page Venues Section (Reference Design)
   ========================================= */
.venues-section {
    padding: 120px 0;
    background: #111111;
    /* Deep Dark Background */
}

.venues-section .section-title h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 60px;
}

.venues-section .section-title span {
    color: #c5a059;
    /* Gold accent color */
    letter-spacing: 3px;
}

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

/* White Card on Dark Background */
.venue-card {
    background: #ffffff;
    border-radius: 20px;
    /* More rounded corners */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.venue-image {
    height: 300px;
    /* Taller images */
    position: relative;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.venue-card:hover .venue-image img {
    transform: scale(1.1);
}

/* Remove overlay button for this specific design if not needed, 
   or keep it subtle. The ref image doesn't strictly show a button overlay, 
   but it's good for UX. Let's keep it minimal. */
.venue-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.venue-content {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    color: #444;
    /* Dark text for white card */
    text-align: left;
}

/* Gold Pill Badge */
.venue-category {
    display: inline-block;
    background: #deb666;
    /* Muted Gold */
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.venue-content h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    /* Almost Black Heading */
}

.venue-content p {
    font-size: 0.95rem;
    color: #666;
    /* Grey Body Text */
    line-height: 1.7;
    margin-bottom: 30px;
    flex: 1;
}

/* Meta Section at Bottom */
.venue-meta {
    padding-top: 20px;
    border-top: 1px solid #eee;
    /* Light divider */
    display: flex;
    flex-direction: row;
    /* Horizontal layout */
    gap: 20px;
    font-size: 0.85rem;
    color: #777;
    font-weight: 500;
    align-items: center;
}

.venue-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.venue-meta span i,
.venue-meta span::before {
    color: #c5a059;
    /* Gold Icons */
    font-size: 1.1rem;
}


/* =========================================
   Services Page Premium Layout (Light/Clean)
   ========================================= */
.venues-section-premium {
    background-color: #f9f9f9;
    padding: 100px 0 120px;
    position: relative;
    /* Full width breakout logic */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.venues-section-premium .section-title h2 {
    color: var(--dark);
}

.venues-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.venue-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.venue-row.reverse {
    flex-direction: row-reverse;
}

.venue-col-img {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.venue-col-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.venue-row:hover .venue-col-img img {
    transform: scale(1.03);
}

.venue-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.venue-col-text {
    flex: 1;
}

.venue-subtitle {
    display: block;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.venue-col-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-family: 'Marcellus', serif;
}

.venue-col-text p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.venue-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.venue-features-list li {
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
}

.venue-features-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.venue-actions {
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .venues-grid {
        grid-template-columns: 1fr;
    }

    .venue-row,
    .venue-row.reverse {
        flex-direction: column;
        text-align: left;
        gap: 30px;
    }

    .venue-col-img img {
        height: 300px;
    }

    .venue-col-text h3 {
        font-size: 1.8rem;
    }
}

/* Blog Section */
.blog-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.blog-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.blog-main {
    padding: 100px 0;
    background: var(--base);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.post-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.post-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.post-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.post-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: var(--transition);
}

.post-card:hover .post-content h2 {
    color: var(--primary);
}

.post-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.read-more {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.read-more::after {
    content: '→';
    transition: var(--transition);
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination .page-numbers {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--primary);
    color: var(--white);
}

/* Single Post */
.single-post-hero {
    padding: 140px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero.png') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.post-header {
    max-width: 800px;
    margin: 0 auto;
}

.post-header .post-category {
    position: static;
    display: inline-block;
    margin-bottom: 20px;
}

.post-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.single-post-content {
    padding: 80px 0;
    background: var(--base);
}

.post-entry-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.post-entry-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #444;
}

.post-entry-content blockquote {
    border-left: 5px solid var(--secondary);
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--dark);
}

.post-footer {
    max-width: 800px;
    margin: 40px auto 0;
    padding-top: 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-tags {
    display: flex;
    gap: 10px;
}

.post-tags a {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.post-share {
    display: flex;
    gap: 15px;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .post-header h1 {
        font-size: 2.2rem;
    }

    .post-entry-content {
        padding: 30px 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Venue Detail Page */
.venue-detail-hero {
    padding: 140px 0 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.png') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.venue-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.venue-detail-hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin: 0;
    text-transform: uppercase;
}

.venue-features-section {
    padding: 100px 0;
    background: var(--base);
}

.venue-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.venue-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 300px;
}

.gallery-item.large {
    grid-column: span 2;
    height: 500px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.venue-info-sidebar {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--secondary);
    position: sticky;
    top: 120px;
}

.venue-info-sidebar h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.specs-list {
    margin-bottom: 40px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.spec-label {
    font-weight: 600;
    color: var(--dark);
}

.spec-value {
    color: var(--text-muted);
}

.venue-description {
    padding: 80px 0;
    background: var(--white);
}

.venue-desc-content {
    max-width: 900px;
    margin: 0 auto;
}

.venue-desc-content h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.venue-desc-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 25px;
}

@media (max-width: 1024px) {
    .venue-detail-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .venue-info-sidebar {
        position: static;
    }

    .venue-detail-hero h1 {
        font-size: 3rem;
    }
}

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

    .gallery-item.large {
        grid-column: span 1;
        height: 350px;
    }
}

/* Social Media Icons */
.footer-social-links a,
.contact-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 26, 26, 0.08);
    transition: var(--transition);
    color: var(--primary) !important;
    text-decoration: none;
}

.footer-social-links a:hover,
.contact-social-links a:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 26, 26, 0.2);
}

.footer-social-links i,
.contact-social-links i {
    font-size: 1.1rem;
}

.footer-social-links,
.contact-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-social-links {
    gap: 20px;
    margin-top: 25px;
}

@media screen and (max-width: 768px) {

    .footer-social-links,
    .contact-social-links {
        justify-content: center;
        gap: 12px !important;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 30px;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }
}
/* Premium Menu Download Section */
.menu-download-v2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 60px 0;
    margin: 80px 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.menu-download-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 21, 24, 0.1) 0%, transparent 70%);
    transform: rotate(15deg);
}

.download-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.download-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.download-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-text h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: white;
}

.download-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.btn-premium-download {
    background: var(--primary);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 30px rgba(139, 21, 24, 0.3);
}

.btn-premium-download:hover {
    transform: scale(1.05) translateY(-5px);
    background: var(--secondary);
    box-shadow: 0 15px 40px rgba(139, 21, 24, 0.5);
    color: white;
}

.btn-premium-download .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-premium-download:hover .btn-icon {
    transform: translateY(3px);
}

@media (max-width: 900px) {
    .download-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .download-content {
        flex-direction: column;
        gap: 20px;
    }

    .download-text h3 {
        font-size: 1.8rem;
    }
}
