.experience-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.experience-gallery__item {
    margin: 0;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    aspect-ratio: 4 / 5;
    isolation: isolate;
}

.experience-gallery__link {
    display: block;
    height: 100%;
}

.experience-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
    display: block;
}

.experience-gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.experience-gallery__item:hover img,
.experience-gallery__item:focus-within img {
    transform: scale(1.06);
    filter: saturate(1.05);
}

.experience-gallery__item:hover::after,
.experience-gallery__item:focus-within::after {
    opacity: 1;
}

.experience-gallery__link:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.65);
    outline-offset: 4px;
}

@media (min-width: 1200px) {
    .experience-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .experience-gallery {
        gap: 16px;
    }

    .experience-gallery__item {
        border-radius: 12px;
    }
}

@supports not (aspect-ratio: 1) {
    .experience-gallery__item {
        padding-top: 125%;
    }

    .experience-gallery__link,
    .experience-gallery__item img {
        position: absolute;
        inset: 0;
    }
}
/* Tipsy Cows Custom Styles */

/* ===== BRAND FONT - CAVEAT BRUSH ===== */
/* Apply Caveat Brush as the main brand voice font across all pages */

/* Main page titles and section headings */
.main____title h1,
.main____title h2 {
    font-family: 'Caveat Brush', cursive !important;
}

/* All h1 and h2 elements sitewide */
h1, h2 {
    font-family: 'Caveat Brush', cursive !important;
}

/* Page title headings */
.page-title .content-box h1 {
    font-family: 'Caveat Brush', cursive !important;
}

/* Banner and hero section headings */
.banner__top__text h1,
.banner-carousel .content-box h1,
.banner-carousel .content-box h2 {
    font-family: 'Caveat Brush', cursive !important;
}

/* Section title headings */
.sec-title h2,
.title__section h1,
.title__section h2 {
    font-family: 'Caveat Brush', cursive !important;
}

/* News and content block titles */
.news___letter h2,
.news-block-one .lower-content h3 {
    font-family: 'Caveat Brush', cursive !important;
}

/* Ensure consistent styling for Caveat Brush headings */
.main____title h1 {
    letter-spacing: 2px;
}

/* Header spacing adjustments for desktop */
@media (min-width: 992px) {
    /* Reduce header logo padding for more compact look */
    .main-header.style-one .logo-box {
        padding: 20px 30px 24px;
    }

    /* Keep the header CTA visually aligned with the navigation */
    .main-header.style-one .header__right {
        margin-left: 20px;
        padding: 18px 30px 18px 0;
        display: flex;
        align-items: center;
    }

    .main-header.style-one .header__right .btn-box {
        display: flex;
        align-items: center;
    }

    /* More compact button styling */
    .main-header.style-one .header__right .btn-box .theme-btn-two {
        padding: 10px 24px;
        margin: 0;
        font-size: 14px;
    }

    /* Reduce navigation item padding for more compact navbar */
    .main-header.style-one .main-menu .navigation > li {
        padding: 24px 0;
        margin: 0 15px;
    }

    .main-header.style-one .main-menu .navigation > li.current > a:after {
        top: 28px;
    }

    /* Reduce font size for navigation items */
    .main-header.style-one .main-menu .navigation > li > a {
        font-size: 15px;
        padding: 0 8px;
    }
}

/* Sticky Header Enhancements */
.sticky-header {
    background: rgba(51, 51, 51, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-header .outer-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-header .menu-area {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Ensure sticky header Book Now button is visible and styled */
.sticky-header .header__right {
    margin-left: 20px;
    padding: 0;
}

.sticky-header .header__right .btn-box {
    display: flex;
    align-items: center;
}

.sticky-header .header__right .btn-box .theme-btn-two {
    padding: 8px 20px;
    font-size: 14px;
    margin: 0;
    white-space: nowrap;
}

/* Compact sticky header navigation */
.main-header .sticky-header .main-menu .navigation > li {
    padding: 20px 0px !important;
    margin: 0 12px;
}

.main-header .sticky-header .main-menu .navigation > li > a {
    font-size: 14px;
    padding: 0 5px;
}

/* Ensure logo is more compact in sticky header */
.main-header .sticky-header .logo-box {
    padding: 8px 0px;
    max-width: 160px;
}

.main-header .sticky-header .logo-box img {
    width: 100px;
}

/* Video Hero Section */
.video-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.video-hero-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 100px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 140px 0 50px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .banner__top__text h1 {
    font-size: 160px;
    color: #ffffff;
    font-family: 'Caveat Brush', cursive;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9),
                 0 0 40px rgba(193, 154, 88, 0.3);
    line-height: 1.1;
    letter-spacing: 3px;
    margin: 0 0 25px;
    position: static;
    right: auto;
    top: auto;
    -webkit-text-stroke: 0;
    display: inline-block;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9),
                     0 0 40px rgba(193, 154, 88, 0.3);
    }
    to {
        text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9),
                     0 0 60px rgba(193, 154, 88, 0.5);
    }
}

.hero-tagline {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-tagline span {
    font-size: 26px;
    color: var(--theme-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    padding: 8px 0;
    border-bottom: 2px solid var(--theme-color);
}

.hero-subtitle {
    font-size: 19px;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    line-height: 1.7;
    font-family: 'Josefin Sans', sans-serif;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-content .btn-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-content .btn-box a + a {
    margin-left: 0 !important;
}

/* Hero CTA buttons - consistent styling with improved contrast */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 42px !important;
    border-radius: 10px;
    font-weight: 600 !important;
    font-size: 16px !important;
    letter-spacing: 0.6px !important;
    background-color: #f8d9a5 !important;
    color: #2c1608 !important;
    border: 1px solid #eac285 !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35),
                0 2px 8px rgba(0, 0, 0, 0.25) !important;
    text-shadow: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease,
                background-color 0.2s ease, color 0.2s ease,
                border-color 0.2s ease;
}

.hero-cta-btn:hover,
.hero-cta-btn:focus-visible {
    background-color: #f2c47a !important;
    color: #2c1608 !important;
    border-color: #dfa65a !important;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.38),
                0 4px 12px rgba(0, 0, 0, 0.25) !important;
    transform: translateY(-2px);
}

.hero-cta-btn:active {
    background-color: rgba(32, 20, 11, 0.92) !important;
    color: #fffdf6 !important;
    border-color: rgba(32, 20, 11, 0.92) !important;
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3),
                0 2px 8px rgba(0, 0, 0, 0.25) !important;
}

.hero-cta-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.75);
    outline-offset: 3px;
}

.hero-call-btn {
    white-space: nowrap;
}

/* Growth & Future spacing tweaks */
.growth-expansion {
    padding-top: 60px;
    padding-bottom: 60px;
}

.growth-expansion .title__section {
    margin-bottom: 20px;
}

.growth-expansion .normal__text {
    margin-bottom: 0;
}

.hero-menu-btn::before,
.hero-menu-btn::after,
.hero-charity-btn::before,
.hero-charity-btn::after,
.hero-call-btn::before,
.hero-call-btn::after {
    content: none !important;
}


/* Awards Bar - Redesigned */
.awards-bar {
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.9) 0%, rgba(60, 60, 60, 0.95) 100%);
    padding: 50px 30px;
    margin-top: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(193, 154, 88, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 154, 88, 0.2);
    animation: fadeInUp 1s ease-out 0.8s both;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.awards-bar::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--theme-color), transparent);
    border-radius: 2px;
}

.awards-bar .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: stretch;
}

.awards-bar .row > [class*="col-"] {
    padding: 0 15px;
    margin-bottom: 20px;
    display: flex;
}

.award-item {
    text-align: center;
    color: #ffffff;
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(193, 154, 88, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: cardPopIn 0.6s ease-out forwards;
}

@keyframes cardPopIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Staggered animation delays for each card */
.awards-bar .row > [class*="col-"]:nth-child(1) .award-item {
    animation-delay: 0.9s;
}

.awards-bar .row > [class*="col-"]:nth-child(2) .award-item {
    animation-delay: 1.1s;
}

.awards-bar .row > [class*="col-"]:nth-child(3) .award-item {
    animation-delay: 1.3s;
}

.awards-bar .row > [class*="col-"]:nth-child(4) .award-item {
    animation-delay: 1.5s;
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(193, 154, 88, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.award-item:hover::before {
    opacity: 1;
}

.award-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(193, 154, 88, 0.25);
    border-color: rgba(193, 154, 88, 0.4);
    background: rgba(193, 154, 88, 0.08);
}

/* Auto-animate class for scroll-triggered animation */
.award-item.auto-animate {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(193, 154, 88, 0.25);
    border-color: rgba(193, 154, 88, 0.4);
    background: rgba(193, 154, 88, 0.08);
}

.award-item.auto-animate::before {
    opacity: 1;
}

.award-item.auto-animate i {
    transform: scale(1.15) rotateY(360deg);
    filter: drop-shadow(0 6px 12px rgba(193, 154, 88, 0.5));
}

.award-item i {
    font-size: 48px;
    color: var(--theme-color);
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(193, 154, 88, 0.3));
    flex-shrink: 0;
}

.award-item:hover i {
    transform: scale(1.15) rotateY(360deg);
    filter: drop-shadow(0 6px 12px rgba(193, 154, 88, 0.5));
}

.award-item span {
    font-size: 17px;
    line-height: 1.6;
    display: block;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Josefin Sans', sans-serif;
    position: relative;
    z-index: 1;
    flex-grow: 0;
    word-spacing: 0.2em;
    white-space: normal;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content {
        padding: 120px 0 40px;
    }
    
    .hero-content .banner__top__text h1 {
        font-size: 120px;
    }
    
    .hero-tagline span {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .awards-bar {
        padding: 40px 25px;
        margin-top: 50px;
        border-radius: 15px;
    }
    
    .awards-bar .row > [class*="col-"] {
        margin-bottom: 15px;
    }
    
    .award-item {
        padding: 30px 20px;
        min-height: 170px;
    }
}

@media (max-width: 767px) {
    /* Hide video and use slideshow on mobile */
    .video-background video {
        display: none !important;
    }
    
    .video-background {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        animation: heroSlideshow 15s infinite;
    }
    
    /* Slideshow animation cycling through 5 images (3 seconds each) */
    @keyframes heroSlideshow {
        0%, 20% {
            background-image: url('../tipsycows/photo12.jpg');
        }
        20.01%, 40% {
            background-image: url('../tipsycows/photo13.jpg');
        }
        40.01%, 60% {
            background-image: url('../tipsycows/photo14.jpg');
        }
        60.01%, 80% {
            background-image: url('../tipsycows/photo15.jpg');
        }
        80.01%, 100% {
            background-image: url('../tipsycows/photo16.jpg');
        }
    }
    
    .hero-content {
        padding: 100px 0 30px;
    }
    
    .hero-content .banner__top__text h1 {
        font-size: 80px;
        letter-spacing: 2px;
    }
    
    .hero-tagline span {
        font-size: 18px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .hero-content .btn-box {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content .btn-box a {
        margin: 5px 0 !important;
        width: 100%;
        max-width: 280px;
    }
    
    .awards-bar {
        margin-top: 40px;
        padding: 35px 20px;
        border-radius: 12px;
    }
    
    .awards-bar .row > [class*="col-"] {
        margin-bottom: 12px;
    }
    
    .award-item {
        padding: 25px 15px;
        min-height: 160px;
    }
}

/* Responsive adjustments for sticky header on tablet */
@media (max-width: 1199px) and (min-width: 768px) {
    .sticky-header .header__right .btn-box .theme-btn-two {
        padding: 7px 16px;
        font-size: 13px;
    }
    
    .main-header .sticky-header .main-menu .navigation > li {
        margin: 0 8px;
    }
    
    .main-header .sticky-header .main-menu .navigation > li > a {
        font-size: 13px;
    }
    
    /* Fix menu item yellow lines on tablet */
    .name__price__shrtd.body__one li:after {
        top: auto !important;
        bottom: -25px !important;
    }
}

/* Hide Book Now button on mobile sticky header for space */
@media (max-width: 767px) {
    .sticky-header .header__right {
        display: none;
    }
    
    /* Make navigation more compact on mobile */
    .main-header .sticky-header .logo-box img {
        width: 80px;
    }
    
    .award-item i {
        font-size: 38px;
        margin-bottom: 15px;
    }
    
    .award-item span {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 80px 0 20px;
    }

    .awards-bar {
        margin-top: 30px;
        padding: 30px 15px;
        border-radius: 10px;
    }
    
    .awards-bar .row > [class*="col-"] {
        margin-bottom: 10px;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .award-item {
        padding: 20px 15px;
        min-height: 140px;
    }
    
    .award-item i {
        font-size: 36px;
    }
    
    .hero-content .banner__top__text h1 {
        font-size: 60px;
        letter-spacing: 1px;
    }
    
    .hero-tagline span {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
}

/* Video transition effect */
.video-background video {
    transition: opacity 1s ease-in-out;
}

.video-background video.fade-out {
    opacity: 0;
}

.video-background video.fade-in {
    opacity: 1;
}

/* Remove wheat icons from Signature Experiences section */
.menu__from__section .center__title:before,
.menu__from__section .center__title:after {
    display: none !important;
}

/* Menu page specific fixes */
.menu__from__section.menu__page .menu__from__block {
    margin-bottom: 30px;
}

.menu__from__section.menu__page .menu__text__block .menu__list {
    margin-top: 20px;
}

/* Fix menu item alignment and spacing */
.menu__from__section .name__price__shrtd.body__one li {
    margin-bottom: 35px;
}

.menu__from__section .name__price__shrtd .name__price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
}

/* Fix yellow lines positioning for all screen sizes */
.name__price__shrtd.body__one li {
    position: relative;
    padding-bottom: 25px;
}

.name__price__shrtd.body__one li:after {
    top: auto !important;
    bottom: 0 !important;
    left: 0;
    right: 0;
}

/* Improve Important Information cards */
.customer__section [style*="background: rgba(193, 154, 88, 0.05)"] {
    transition: all 0.3s ease;
}

.customer__section [style*="background: rgba(193, 154, 88, 0.05)"]:hover {
    background: rgba(193, 154, 88, 0.08) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 154, 88, 0.2);
}

/* Fix CTA section phone number sizing */
.blog__section .cta-box h2 {
    font-size: 42px !important;
    line-height: 1.2 !important;
    word-break: break-word;
}

.blog__section .cta-box h2 i {
    font-size: 36px;
    margin-right: 10px;
}

/* Better button spacing in CTA */
.blog__section .cta-box .btn-box {
    margin-top: 20px;
}

/* Fix wine & cocktails icon cards */
.about__us [style*="background: rgba(193, 154, 88, 0.05)"] {
    transition: all 0.3s ease;
    height: 100%;
}

.about__us [style*="background: rgba(193, 154, 88, 0.05)"]:hover {
    background: rgba(193, 154, 88, 0.08) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(193, 154, 88, 0.25);
}

/* ===== IMPROVED FOOTER DESIGN ===== */

/* Modern warm gray footer background that complements the site's color palette */
footer.main-footer {
    background: #2A2A2A !important; /* Sophisticated charcoal gray */
    background: linear-gradient(180deg, #2A2A2A 0%, #242424 100%) !important;
}

/* Fix footer column padding and alignment */
footer.main-footer .footer__title {
    padding: 90px 40px !important;
    text-align: left;
}

/* Ensure footer has clean horizontal line only */
.footer-bottom {
    border-top: 1px solid rgba(201, 171, 129, 0.2); /* Subtle gold-toned divider */
}

/* Remove any stray borders from footer columns */
footer.main-footer .row > * .footer__title {
    border-right: none !important;
    border-bottom: none !important;
}

/* Enhance footer text readability */
footer.main-footer .footer___title__text p,
footer.main-footer .footer___title__text a {
    color: #E0E0E0 !important; /* Light gray for better readability */
}

footer.main-footer .footer___title__text a:hover {
    color: var(--theme-color) !important;
}

/* Improve footer subtitle styling */
footer.main-footer .sub____title {
    color: var(--theme-color) !important;
    font-weight: 600;
}

/* Better footer menu link styling */
.footer-bottom .footer__menu li a {
    color: #D0D0D0 !important;
    transition: all 0.3s ease;
}

.footer-bottom .footer__menu li a:hover {
    color: var(--theme-color) !important;
}

/* Better spacing for menu sections */
.menu__from__section.menu__page .see__pad {
    padding: 100px 0;
}

/* Improve sub-title spacing in menu sections */
.menu__from__section .menu__text__block .sub____title {
    margin-bottom: 25px;
}

/* Better list item spacing */
.menu__from__section .menu__list ul li {
    line-height: 1.6;
}

/* Fix text readability in descriptions */
.menu__from__section .menu__text__block p {
    line-height: 1.7;
    color: var(--higer-secondary-color);
}

/* Improve button hover states */
.theme-btn-one:hover,
.theme-btn-two:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Better icon spacing in Important Information */
.customer__section h4 i {
    margin-right: 10px;
}

/* Improve list styling in info cards */
.customer__section ul li i {
    color: var(--theme-color);
}

/* Fix: Remove out-of-place icon from Book Your Visit contact card section */
.blog__section.see__pad::before {
    display: none !important;
}

.blog__section.see__pad::after {
    display: none !important;
}

/* Hide title icon from Book Your Visit section */
.blog__section .title__section .main____title:after,
.blog__section .title__section.two .main____title:after {
    display: none !important;
}

/* Also hide icon from normal text if present */
.blog__section .normal__text.two:after {
    display: none !important;
}

/* ========================================
   ENHANCED MOBILE RESPONSIVENESS
   ======================================== */

/* Extra mobile breakpoint for very small screens */
@media (max-width: 360px) {
    .hero-content .banner__top__text h1 {
        font-size: 50px !important;
        letter-spacing: 0.5px;
    }
    
    .hero-tagline span {
        font-size: 14px !important;
    }
    
    .hero-subtitle {
        font-size: 13px !important;
    }
    
    .awards-bar {
        padding: 25px 12px !important;
    }
    
    .award-item {
        padding: 18px 12px !important;
        min-height: 130px !important;
    }
    
    .award-item i {
        font-size: 32px !important;
    }
    
    .award-item span {
        font-size: 14px !important;
    }
}

/* Improved mobile navigation and header */
@media (max-width: 767px) {
    /* Better mobile menu button */
    .mobile-nav-toggler {
        padding: 10px !important;
        margin: 15px 10px !important;
    }
    
    /* Ensure mobile menu items are touch-friendly */
    .mobile-menu .navigation li {
        padding: 0 !important;
    }
    
    .mobile-menu .navigation li a {
        padding: 12px 20px !important;
        display: block;
        font-size: 16px !important;
    }
    
    /* Better section spacing on mobile */
    .see__pad {
        padding: 70px 0 !important;
    }
    
    /* Improve title sections on mobile */
    .title__section .sub____title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .title__section .main____title h1 {
        font-size: 36px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px;
    }
    
    .title__section .main____title h2 {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }
    
    /* Fix menu item yellow lines on mobile */
    .name__price__shrtd.body__one li:after {
        top: auto !important;
        bottom: -25px !important;
        width: 100% !important;
    }
    
    /* Reduce spacing between menu items on mobile */
    .name__price__shrtd.body__one li {
        margin-bottom: 45px !important;
    }
    
    /* Ensure menu item text wraps properly on mobile */
    .name__price__shrtd .name__price li {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Better content card spacing */
    .food____content {
        margin-bottom: 20px;
    }
    
    /* Improve menu experience cards on mobile */
    .menu__experience__card {
        padding: 30px 20px !important;
        margin-bottom: 20px;
    }
    
    .menu__experience__card h3 {
        font-size: 22px !important;
    }
    
    .menu__experience__card p:first-of-type {
        font-size: 28px !important;
    }
    
    /* Better CTA boxes on mobile */
    .cta-box {
        padding: 35px 25px !important;
    }
    
    .cta-box h2 {
        font-size: 36px !important;
        word-break: break-word;
    }
    
    .cta-box p {
        font-size: 16px !important;
    }
    
    .cta-box .btn-box {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .cta-box .btn-box a {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px !important;
        font-size: 16px !important;
    }
    
    /* Improve footer on mobile */
    footer.main-footer .footer__title {
        padding: 60px 20px !important;
        text-align: center;
    }
    
    footer.main-footer .footer___title__text p {
        font-size: 16px !important;
    }
    
    .footer-bottom .footer__logo {
        padding-bottom: 30px;
    }
    
    .footer-bottom .footer__menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-bottom .footer__menu ul li {
        margin: 0 !important;
    }
}

/* Tablet improvements */
@media (min-width: 768px) and (max-width: 991px) {
    /* Better hero on tablet */
    .hero-content .banner__top__text h1 {
        font-size: 100px;
    }
    
    /* Better awards bar on tablet */
    .awards-bar .row > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    /* Better menu cards on tablet */
    .menu__experience__card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .menu__experience__card p:nth-of-type(3) {
        flex-grow: 1;
    }
    
    /* Improve section spacing on tablet */
    .see__pad {
        padding: 90px 0;
    }
}

/* Touch-friendly improvements for all devices */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    a, button, .theme-btn-one, .theme-btn-two {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Prevent hover effects on touch devices */
    .award-item:hover {
        transform: none;
    }
    
    /* Better spacing for touch interaction */
    .mobile-menu .navigation li a {
        padding: 14px 20px;
    }
}

/* Landscape mobile improvements */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-content {
        padding: 80px 0 30px;
    }
    
    .hero-content .banner__top__text h1 {
        font-size: 70px;
    }
    
    .awards-bar {
        margin-top: 30px;
    }
    
    .video-hero-container {
        min-height: auto;
        padding-bottom: 60px;
    }
}

/* Print styles */
@media print {
    .mobile-nav-toggler,
    .sticky-header,
    .video-background,
    .btn-box,
    footer {
        display: none !important;
    }
    
    .hero-content .banner__top__text h1 {
        color: #333333 !important;
        text-shadow: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .award-item {
        border: 2px solid currentColor;
    }
    
    .theme-btn-one,
    .theme-btn-two {
        border: 2px solid currentColor;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .video-background video {
        animation: none !important;
    }
}

/* Dark mode support - maintain brand colors */
@media (prefers-color-scheme: dark) {
    /* The site already has a dark theme, so minimal changes needed */
    body {
        background-color: #333333;
    }
}

/* ========================================
   CHRISTMAS HAMPERS PAGE THEME
   ======================================== */

/* Christmas color palette */
:root {
    --christmas-red: #c41e3a;
    --christmas-green: #165b33;
    --christmas-gold: #d4af37;
    --christmas-white: #ffffff;
    --christmas-dark-green: #0f4523;
    --christmas-light-red: #e74c3c;
}

/* Christmas page wrapper */
.christmas-theme {
    position: relative;
    overflow: hidden;
}

/* Snowfall animation */
@keyframes snowfall {
    0% {
        transform: translateY(-10vh) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(100px);
        opacity: 0.3;
    }
}

@keyframes snowfallReverse {
    0% {
        transform: translateY(-10vh) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(-100px);
        opacity: 0.3;
    }
}

/* Snowflake elements */
.snowflake {
    position: fixed;
    top: -10vh;
    color: var(--christmas-white);
    font-size: 1.5em;
    opacity: 0.8;
    pointer-events: none;
    z-index: 9999;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Christmas decorative elements */
.christmas-decoration {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
}

/* Festive glow effect */
@keyframes festiveGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3),
                    0 0 40px rgba(196, 30, 58, 0.2),
                    0 0 60px rgba(22, 91, 51, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5),
                    0 0 50px rgba(196, 30, 58, 0.3),
                    0 0 70px rgba(22, 91, 51, 0.3);
    }
}

/* Christmas page title enhancement */
.christmas-theme .page-title {
    position: relative;
}

.christmas-theme .page-title .bg-layer {
    filter: brightness(0.7);
}

.christmas-theme .page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(196, 30, 58, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.christmas-theme .page-title .content-box {
    position: relative;
    z-index: 2;
}

.christmas-theme .page-title .content-box h1 {
    color: var(--christmas-white);
    text-shadow: 2px 2px 4px rgba(196, 30, 58, 0.5),
                 0 0 30px rgba(212, 175, 55, 0.4);
    animation: festiveTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes festiveTitleGlow {
    from {
        text-shadow: 2px 2px 4px rgba(196, 30, 58, 0.5),
                     0 0 30px rgba(212, 175, 55, 0.4);
    }
    to {
        text-shadow: 2px 2px 6px rgba(196, 30, 58, 0.7),
                     0 0 50px rgba(212, 175, 55, 0.6);
    }
}

/* Christmas icons enhancement */
.christmas-theme .fas.fa-check,
.christmas-theme .fas.fa-calendar,
.christmas-theme .fas.fa-box-open,
.christmas-theme .fas.fa-snowflake,
.christmas-theme .fas.fa-credit-card {
    color: var(--christmas-red) !important;
}

.christmas-theme .fas.fa-cheese,
.christmas-theme .fas.fa-bread-slice,
.christmas-theme .fas.fa-gift {
    color: var(--christmas-gold) !important;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

/* Christmas card enhancements */
.christmas-theme [style*="background: rgba(193, 154, 88, 0.05)"] {
    background: linear-gradient(135deg, 
                rgba(196, 30, 58, 0.05) 0%, 
                rgba(22, 91, 51, 0.08) 50%,
                rgba(196, 30, 58, 0.05) 100%) !important;
    border: 1px solid rgba(196, 30, 58, 0.2);
    position: relative;
    overflow: hidden;
}

.christmas-theme [style*="background: rgba(193, 154, 88, 0.05)"]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: christmasShimmer 8s ease-in-out infinite;
}

@keyframes christmasShimmer {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

.christmas-theme [style*="background: rgba(193, 154, 88, 0.05)"]:hover {
    border-color: rgba(212, 175, 55, 0.5);
    animation: festiveGlow 2s ease-in-out infinite;
}

/* Christmas CTA box enhancement */
.christmas-theme .cta-box {
    background: linear-gradient(135deg, 
                rgba(22, 91, 51, 0.15) 0%,
                rgba(196, 30, 58, 0.1) 50%,
                rgba(22, 91, 51, 0.15) 100%) !important;
    border: 3px solid var(--christmas-gold) !important;
    animation: festiveGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.christmas-theme .cta-box::before {
    content: '❄';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 40px;
    opacity: 0.1;
    color: var(--christmas-white);
}

.christmas-theme .cta-box::after {
    content: '❄';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 40px;
    opacity: 0.1;
    color: var(--christmas-white);
}

/* Christmas button enhancements */
.christmas-theme .theme-btn-one {
    background: linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-light-red) 100%) !important;
    border-color: var(--christmas-red) !important;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.christmas-theme .theme-btn-one:hover {
    background: linear-gradient(135deg, var(--christmas-light-red) 0%, var(--christmas-red) 100%) !important;
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.6);
}

.christmas-theme .theme-btn-two {
    border: 2px solid var(--christmas-green) !important;
    color: var(--christmas-green) !important;
}

.christmas-theme .theme-btn-two:hover {
    background: var(--christmas-green) !important;
    color: var(--christmas-white) !important;
    box-shadow: 0 4px 15px rgba(22, 91, 51, 0.4);
}

/* Christmas section backgrounds */
.christmas-theme .about__us.see__pad {
    position: relative;
}

.christmas-theme .about__us.see__pad::before {
    content: '🎄';
    position: absolute;
    top: 50px;
    right: 5%;
    font-size: 100px;
    opacity: 0.05;
    transform: rotate(-15deg);
}

.christmas-theme .about__us.see__pad::after {
    content: '🎁';
    position: absolute;
    bottom: 50px;
    left: 5%;
    font-size: 80px;
    opacity: 0.05;
    transform: rotate(15deg);
}

/* Christmas testimonial section */
.christmas-theme .customer__section {
    position: relative;
}

.christmas-theme .customer__section::before {
    content: '⭐';
    position: absolute;
    top: 20px;
    left: 10%;
    font-size: 60px;
    opacity: 0.08;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.08;
        transform: scale(1);
    }
    50% {
        opacity: 0.15;
        transform: scale(1.1);
    }
}

/* Holly decoration for section dividers */
.christmas-theme .main____title span {
    color: var(--christmas-red) !important;
    text-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
}

/* Candy cane stripes for decorative effect */
@keyframes candyCaneStripe {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Christmas image overlays */
.christmas-theme .about__right__img figure::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(196, 30, 58, 0.1) 100%);
    pointer-events: none;
}

/* Festive section spacing with decorative borders */
.christmas-theme section.see__pad {
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, 
                  transparent 0%, 
                  var(--christmas-red) 20%,
                  var(--christmas-gold) 40%,
                  var(--christmas-green) 60%,
                  var(--christmas-gold) 80%,
                  var(--christmas-red) 100%) 1;
}

/* Christmas phone number highlight */
.christmas-theme .cta-box h2 {
    color: var(--christmas-gold) !important;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6),
                 2px 2px 4px rgba(196, 30, 58, 0.4);
}

/* Responsive Christmas adjustments */
@media (max-width: 767px) {
    .christmas-theme .about__us.see__pad::before,
    .christmas-theme .about__us.see__pad::after {
        font-size: 60px;
    }
    
    .christmas-theme .cta-box::before,
    .christmas-theme .cta-box::after {
        font-size: 30px;
    }
}

/* Christmas accessibility - ensure readability */
.christmas-theme h1,
.christmas-theme h2,
.christmas-theme h3,
.christmas-theme h4,
.christmas-theme h5 {
    color: inherit;
}

/* Festive icon animations */
@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.christmas-theme .text-center i:hover {
    animation: iconBounce 0.6s ease-in-out;
}

/* ========================================
   MENU PAGE - BEIGE MENU CARD STYLING
   ======================================== */

/* Menu card background - resembling physical menu */
.menu__from__section.menu__page .medium-container,
.our__choice__section.menu__page .medium-container {
    background: #E8D5B7; /* Darker beige - tan/wheat color */
    border: 3px solid #8B4513; /* Saddle brown border */
    border-radius: 8px;
    padding: 60px 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(139, 69, 19, 0.2);
    position: relative;
    margin-top: 50px;
}

/* Special handling for cheese section where title is in auto-container */
.menu__from__section.menu__page .auto-container > .center__title {
    background: #E8D5B7;
    border: 3px solid #8B4513;
    border-bottom: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 60px 40px 30px 40px;
    margin-bottom: 0;
    position: relative;
}

/* Top decorative corners for separate title section */
.menu__from__section.menu__page .auto-container > .center__title::before,
.menu__from__section.menu__page .auto-container > .center__title::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #8B4513;
}

.menu__from__section.menu__page .auto-container > .center__title::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.menu__from__section.menu__page .auto-container > .center__title::after {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
}

/* Remove top border and radius from medium-container in cheese section where title is separate */
.menu__from__section.menu__page .medium-container {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0 !important;
    padding-top: 30px;
}

/* Restore for drinks section where title is inside medium-container */
.our__choice__section.menu__page .medium-container {
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
    padding-top: 60px !important;
}

/* Decorative corner elements */
.menu__from__section.menu__page .medium-container::before,
.menu__from__section.menu__page .medium-container::after,
.our__choice__section.menu__page .medium-container::before,
.our__choice__section.menu__page .medium-container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #8B4513;
}

.menu__from__section.menu__page .medium-container::before,
.our__choice__section.menu__page .medium-container::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.menu__from__section.menu__page .medium-container::after,
.our__choice__section.menu__page .medium-container::after {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
}

/* Bottom corners using row pseudo-elements */
.menu__from__section.menu__page .row::before,
.menu__from__section.menu__page .row::after,
.our__choice__section.menu__page .row::before,
.our__choice__section.menu__page .row::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #8B4513;
    z-index: 1;
}

.menu__from__section.menu__page .row::before,
.our__choice__section.menu__page .row::before {
    bottom: 15px;
    left: 15px;
    border-right: none;
    border-top: none;
}

.menu__from__section.menu__page .row::after,
.our__choice__section.menu__page .row::after {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.menu__from__section.menu__page .row,
.our__choice__section.menu__page .row {
    position: relative;
}

/* Ensure title section is also styled */
.menu__from__section.menu__page .center__title,
.our__choice__section.menu__page .center__title {
    margin-bottom: 40px;
}

/* Text color adjustments for beige background */
.menu__from__section.menu__page .menu__text__block .sub____title span,
.our__choice__section.menu__page .menu__text__block .sub____title span {
    color: #8B4513; /* Darker brown for sub-titles */
}

.menu__from__section.menu__page .menu__text__block p,
.menu__from__section.menu__page .menu__list li,
.our__choice__section.menu__page .menu__text__block p,
.our__choice__section.menu__page .menu__list li {
    color: #333333; /* Dark text for readability */
}

/* Price text should remain gold but readable */
.menu__from__section.menu__page .name__price li:last-child,
.our__choice__section.menu__page .name__price li:last-child {
    color: #B8860B; /* Dark goldenrod for better contrast */
    font-weight: 600;
}

/* Yellow divider lines - adjusted for beige background */
.menu__from__section.menu__page .name__price__shrtd.body__one li:after,
.our__choice__section.menu__page .name__price__shrtd.body__one li:after {
    background: linear-gradient(90deg,
                rgba(139, 69, 19, 0.2) 0%,
                rgba(184, 134, 11, 0.5) 50%,
                rgba(139, 69, 19, 0.2) 100%);
    height: 1px;
}

/* Strong text emphasis */
.menu__from__section.menu__page strong,
.our__choice__section.menu__page strong {
    color: #654321; /* Dark brown for emphasis */
}

/* Main section titles on beige */
.menu__from__section.menu__page .main____title h1,
.our__choice__section.menu__page .main____title h1 {
    color: #654321; /* Dark brown for main titles */
}

.menu__from__section.menu__page .main____title h1 span,
.our__choice__section.menu__page .main____title h1 span {
    color: #8B4513; /* Medium brown for span emphasis */
}

/* Sub-title color adjustment */
.menu__from__section.menu__page .title__section .sub____title span,
.our__choice__section.menu__page .title__section .sub____title span {
    color: #B8860B; /* Dark goldenrod */
}

/* Responsive adjustments for menu cards */
@media (max-width: 991px) {
    .menu__from__section.menu__page .medium-container,
    .our__choice__section.menu__page .medium-container {
        padding: 50px 30px;
    }
}

@media (max-width: 767px) {
    .menu__from__section.menu__page .medium-container,
    .our__choice__section.menu__page .medium-container {
        padding: 40px 25px;
        border-width: 2px;
    }
    
    /* Smaller decorative corners on mobile */
    .menu__from__section.menu__page .medium-container::before,
    .menu__from__section.menu__page .medium-container::after,
    .our__choice__section.menu__page .medium-container::before,
    .our__choice__section.menu__page .medium-container::after,
    .menu__from__section.menu__page .row::before,
    .menu__from__section.menu__page .row::after,
    .our__choice__section.menu__page .row::before,
    .our__choice__section.menu__page .row::after {
        width: 15px;
        height: 15px;
    }
    
    .menu__from__section.menu__page .medium-container::before,
    .our__choice__section.menu__page .medium-container::before,
    .menu__from__section.menu__page .row::before,
    .our__choice__section.menu__page .row::before {
        left: 10px;
    }
    
    .menu__from__section.menu__page .medium-container::after,
    .our__choice__section.menu__page .medium-container::after,
    .menu__from__section.menu__page .row::after,
    .our__choice__section.menu__page .row::after {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .menu__from__section.menu__page .medium-container,
    .our__choice__section.menu__page .medium-container {
        padding: 35px 20px;
        margin-top: 30px;
    }
}


/* ========================================
   FACEBOOK PAGE PLUGIN STYLING
   ======================================== */

/* Facebook plugin container - centered with minimum width to prevent narrow loading */
.facebook-plugin-container {
    margin: 40px auto !important;
    width: 100% !important;
    max-width: 600px !important;
    position: relative;
    min-height: 300px;
    text-align: center !important;
}

/* Facebook plugin wrapper - enforce minimum width */
.facebook-plugin-container .fb-page {
    display: inline-block !important;
    margin: 0 !important;
    min-width: 340px !important;
    max-width: 600px !important;
}

/* Ensure Facebook SDK elements respect minimum width */
.facebook-plugin-container .fb-page span,
.facebook-plugin-container .fb-page span iframe {
    min-width: 340px !important;
}

/* Desktop centering with stable width */
@media (min-width: 992px) {
    .facebook-plugin-container {
        text-align: center !important;
        max-width: 600px !important;
    }
    
    .facebook-plugin-container .fb-page {
        display: inline-block !important;
        margin: 0 !important;
        min-width: 500px !important;
        width: 500px !important;
    }
    
    .facebook-plugin-container .fb-page span,
    .facebook-plugin-container .fb-page span iframe {
        min-width: 500px !important;
    }
}

/* Tablet width constraints */
@media (max-width: 991px) and (min-width: 768px) {
    .facebook-plugin-container {
        max-width: 500px !important;
    }
    
    .facebook-plugin-container .fb-page {
        min-width: 400px !important;
    }
    
    .facebook-plugin-container .fb-page span,
    .facebook-plugin-container .fb-page span iframe {
        min-width: 400px !important;
    }
}

/* Facebook feed section styling */
.facebook-feed-section {
    position: relative;
    overflow: visible;
}

.facebook-feed-section .row,
.facebook-feed-section .col-lg-10,
.facebook-feed-section .col-lg-8 {
    overflow: visible;
}

.facebook-feed-section .col-lg-10,
.facebook-feed-section .col-lg-8 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.facebook-feed-section .title__section {
    margin-bottom: 20px;
    width: 100%;
}

.facebook-feed-section .normal__text {
    color: var(--higer-secondary-color);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.facebook-feed-section .normal__text p {
    font-size: 16px;
    line-height: 1.7;
}

/* Better spacing and layout for desktop */
@media (min-width: 992px) {
    .facebook-feed-section .row {
        min-height: 400px;
    }
    
    .facebook-feed-section .normal__text p {
        font-size: 17px;
    }
}

/* Mobile responsiveness - ensure minimum width */
@media (max-width: 767px) {
    .facebook-plugin-container {
        margin: 25px auto;
        padding: 0 10px;
        max-width: 100% !important;
    }
    
    .facebook-plugin-container .fb-page {
        min-width: 280px !important;
        max-width: 100% !important;
    }
    
    .facebook-plugin-container .fb-page span,
    .facebook-plugin-container .fb-page span iframe {
        min-width: 280px !important;
        max-width: 100% !important;
    }
}

/* Loading state for Facebook plugin */
.facebook-plugin-container::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(193, 154, 88, 0.2);
    border-top-color: var(--theme-color);
    border-radius: 50%;
    animation: fbPluginLoading 1s linear infinite;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.facebook-plugin-container:empty::before {
    opacity: 1;
    z-index: 1;
}

@keyframes fbPluginLoading {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Facebook section title enhancements */
.facebook-feed-section .main____title h1 span {
    color: var(--theme-color);
}

.facebook-feed-section .sub____title span {
    position: relative;
    padding-bottom: 10px;
}

.facebook-feed-section .sub____title span::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--theme-color);
}

/* Enhanced desktop appearance */
@media (min-width: 992px) {
    .facebook-feed-section .title__section {
        margin-bottom: 30px;
    }
    
    .facebook-feed-section .main____title h1 {
        font-size: 48px;
    }
}

/* Posts page specific styling */
.facebook-feed-section .btn-box a {
    transition: all 0.3s ease;
}

.facebook-feed-section .btn-box a:hover {
    transform: translateY(-2px);
}

/* Button styling for feed sections */
.facebook-feed-section .theme-btn-one,
.facebook-feed-section .theme-btn-two {
    display: inline-block;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.facebook-feed-section .theme-btn-two:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(193, 154, 88, 0.3);
}

/* Ensure proper spacing around Facebook sections */
.facebook-feed-section + section {
    margin-top: 0;
}

/* Facebook plugin iframe styling - ensure it loads smoothly */
.fb-page,
.fb-page iframe {
    border-radius: 8px;
}

/* Additional responsive adjustments for Posts page */
@media (max-width: 767px) {
    .facebook-feed-section .col-lg-10 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Posts page feed section layout improvements */
@media (min-width: 992px) {
    .facebook-feed-section .about__us__content {
        padding: 40px 0;
    }
    
    .facebook-feed-section .medium-container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 15px;
    }
}

/* Accessibility improvements */
.facebook-plugin-container a {
    outline-offset: 4px;
}

.facebook-plugin-container a:focus {
    outline: 2px solid var(--theme-color);
}

/* Print styles - hide Facebook plugin when printing */
@media print {
    .facebook-feed-section,
    .facebook-plugin-container {
        display: none !important;
    }
}

/* ===== COCKTAIL MENU SPACING & READABILITY IMPROVEMENTS ===== */

/* Improved spacing for cocktail menu items - consistent with other menu sections */
.our__choice__section.menu__page .name__price__shrtd.body__one li {
    margin-bottom: 30px;
    padding-bottom: 20px;
}

/* Better alignment for cocktail names and prices */
.our__choice__section.menu__page .name__price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.our__choice__section.menu__page .name__price li:first-child {
    flex: 1;
    text-align: left;
    font-size: 16px;
}

.our__choice__section.menu__page .name__price li:last-child {
    flex-shrink: 0;
    text-align: right;
    white-space: nowrap;
}

/* Cocktail description text - improved readability */
.our__choice__section.menu__page .menu__list li span {
    font-size: 14px !important;
    display: block;
    margin-top: 5px;
    line-height: 1.5;
}

/* Menu block spacing */
.our__choice__section.menu__page .menu__text__block {
    margin-bottom: 40px;
}

.our__choice__section.menu__page .menu__text__block .sub____title {
    margin-bottom: 25px;
}

/* ===== MOBILE RESPONSIVE IMPROVEMENTS ===== */

/* Tablet adjustments */
@media (max-width: 991px) {
    .our__choice__section.menu__page .menu__text__block {
        margin-bottom: 50px;
    }
    
    /* Better spacing on tablet between columns */
    .our__choice__section.menu__page .col-lg-6 {
        margin-bottom: 40px;
    }
    
    .our__choice__section.menu__page .col-lg-6:last-child {
        margin-bottom: 0;
    }
}

/* Mobile phone adjustments */
@media (max-width: 767px) {
    /* Larger description text on mobile for better readability */
    .our__choice__section.menu__page .menu__list li span {
        font-size: 13px !important;
    }
    
    /* Better spacing for menu items on mobile */
    .our__choice__section.menu__page .name__price__shrtd.body__one li {
        margin-bottom: 25px;
        padding-bottom: 18px;
    }
    
    /* Each menu category gets more spacing on mobile */
    .our__choice__section.menu__page .col-lg-6 {
        margin-bottom: 50px;
    }
}

/* Extra small mobile phones */
@media (max-width: 480px) {
    /* Ensure name and price don't break awkwardly */
    .our__choice__section.menu__page .name__price {
        gap: 15px;
    }
    
    .our__choice__section.menu__page .name__price li:first-child {
        font-size: 15px;
    }
    
    .our__choice__section.menu__page .menu__list li span {
        font-size: 12px !important;
    }
    
    /* Tighter spacing on very small screens */
    .our__choice__section.menu__page .name__price__shrtd.body__one li {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
}

/* ===== FIX FOR BACKGROUND IMAGE ON MOBILE ===== */
/* Background-attachment: fixed doesn't work properly on mobile devices (especially iOS) */
/* This fix ensures the background image displays correctly on all mobile devices */

@media (max-width: 991px) {
    /* Remove fixed background attachment on tablets and mobile */
    .video__section.about .video__section__bg__img {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        padding: 200px 0px !important;
    }
    
    /* Ensure the row has appropriate height on tablet */
    .video__section.about .video__section__bg__img .row {
        min-height: 400px !important;
    }
}

@media (max-width: 767px) {
    /* Adjust padding for mobile phones */
    .video__section.about .video__section__bg__img {
        padding: 150px 0px !important;
        background-attachment: scroll !important;
    }
    
    /* Adjust content box padding for mobile */
    .video__section.about .text-center {
        padding: 40px 20px !important;
    }
    
    /* Reduce min-height on mobile */
    .video__section.about .video__section__bg__img .row {
        min-height: 300px !important;
    }
}

@media (max-width: 480px) {
    /* Further adjustments for very small screens */
    .video__section.about .video__section__bg__img {
        padding: 100px 0px !important;
    }
    
    /* Tighter padding for content on small phones */
    .video__section.about .text-center {
        padding: 30px 15px !important;
    }
}

/* ===== HAMPERS PAGE TESTIMONIAL BOXES - WHITE STYLING ===== */
/* Make testimonial boxes white on hampers page */
.christmas-theme .client_block_one .inner__box__right {
    background: #ffffff !important;
    padding: 30px !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

.christmas-theme .client_block_one .inner__box__right h5 {
    color: #c41e3a !important; /* Christmas red for names */
    margin-bottom: 5px !important;
}

.christmas-theme .client_block_one .inner__box__right span {
    color: #2d5c3f !important; /* Christmas green for location */
    display: block !important;
    margin-bottom: 15px !important;
}

.christmas-theme .client_block_one .inner__box__right .client__des p {
    color: #333333 !important; /* Dark gray for text */
}

/* ===== CHEESE EXPERIENCE TEXT SPACING ===== */
.cheese-experience__text {
    padding-top: 10px;
}

.cheese-experience__text--left {
    padding-left: 30px;
}

.cheese-experience__text--right {
    padding-right: 30px;
}

@media (max-width: 991px) {
    .cheese-experience__text {
        padding: 0;
        margin-top: 35px;
    }

    .cheese-experience__text--left,
    .cheese-experience__text--right {
        padding-left: 0;
        padding-right: 0;
    }

    .about__right__img {
        margin-bottom: 15px;
    }
}

/* ===== CHEESE EXPERIENCE CARDS ALIGNMENT ===== */
/* Ensure all cheese selection cards align properly in a row */
.kind__of__food .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.kind__of__food .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.kind__of__food .food____content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kind__of__food .food___text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* ===== VIDEO SECTIONS STYLING ===== */
/* Sky News and YEDS Video Sections */

/* Video wrapper for responsive 16:9 aspect ratio */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Sky News section specific styling */
#sky-news {
    background: var(--black-color);
}

#sky-news .title__section .sub____title span {
    color: var(--theme-color) !important;
}

#sky-news .main____title h1 {
    color: #ffffff !important;
}

#sky-news .main____title span {
    color: var(--theme-color) !important;
}

#sky-news .normal__text p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* YEDS Recognition section specific styling */
#yeds-recognition {
    background: var(--black-color);
}

#yeds-recognition .title__section .sub____title span {
    color: var(--theme-color) !important;
}

#yeds-recognition .main____title h1 {
    color: #ffffff !important;
}

#yeds-recognition .main____title span {
    color: var(--theme-color) !important;
}

#yeds-recognition .normal__text p {
    color: rgba(255, 255, 255, 0.8) !important;
}

#yeds-recognition .lead {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffffff !important;
}

/* Mobile responsiveness for video sections */
@media (max-width: 991px) {
    #yeds-recognition .col-lg-6:first-child {
        margin-bottom: 40px;
    }
    
    #sky-news .normal__text,
    #yeds-recognition .normal__text {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .video-wrapper {
        border-radius: 8px;
    }
    
    #sky-news .title__section,
    #yeds-recognition .title__section {
        margin-bottom: 20px;
    }
    
    #sky-news .normal__text,
    #yeds-recognition .normal__text {
        font-size: 14px;
    }
}

/* Ensure videos scale properly on all devices */
@media (max-width: 575px) {
    .video-wrapper {
        border-radius: 6px;
    }
}






