/* CSS RESET & CUSTOM FONTS */
@font-face {
    font-family: 'PlaybusGT';
    src: url('/assets/fonts/PlaybusBaysGtDemo-RpyGW.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueRoman.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('/assets/fonts/helvetica-neue/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

:root {
    --bg-dark: #09090b;
    --bg-surface: #121216;
    --gold: #dfa857;
    --gold-hover: #c49143;
    --gold-glow: rgba(223, 168, 87, 0.2);
    --text-light: #e4e4e7;
    --text-muted: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.08);
    --header-font: 'PlaybusGT', Georgia, serif;
    --body-font: 'Helvetica Neue', Arial, sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--body-font);
    overflow-x: hidden;
    line-height: 1.6;
}

/* NAVIGATION BAR */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(9, 9, 11, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #EAE1C9;
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
}

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

.logo img {
    height: 24px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #EAE1C9;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(234, 225, 201, 0.5);
}

.nav-btn-outline {
    border: 1px solid #EAE1C9;
    padding: 0.5rem 1.75rem;
    color: #EAE1C9 !important;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-btn-outline:hover {
    background-color: rgba(234, 225, 201, 0.1);
    color: #fff !important;
    border-color: #fff;
}

/* MOBILE NAV TOGGLE & OVERLAY */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #EAE1C9;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(140, 98, 57, 0.25);
    background-color: #EAE1C9;
}

.mobile-menu-header .logo-text {
    font-family: var(--header-font);
    font-size: 2rem;
    color: #8C6239;
    text-decoration: none;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8C6239;
}

.mobile-menu-body {
    flex: 1;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.mobile-menu-links a {
    font-family: var(--body-font);
    font-weight: bold;
    font-size: 1.3rem;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: #8C6239;
}

.mobile-menu-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: #8C6239;
    color: #FFF;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    font-family: var(--body-font);
    font-weight: bold;
    font-size: 0.95rem;
    border: none;
    align-self: flex-start;
    transition: opacity 0.3s ease;
}

.mobile-menu-whatsapp-btn:hover {
    opacity: 0.9;
}

.mobile-menu-hours {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 1rem;
}

.mobile-hours-label {
    font-family: var(--body-font);
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
}

.mobile-hours-value {
    font-family: var(--header-font);
    font-size: 2.2rem;
    color: #000;
    letter-spacing: 0.02em;
}

.mobile-menu-footer-image {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

.mobile-menu-footer-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(9, 9, 11, 0.3) 0%, rgba(9, 9, 11, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.opening-hours-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    animation: fadeInUp 1s forwards 0.5s;
    opacity: 0;
}

.opening-title {
    font-family: var(--header-font);
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: #EAE1C9;
    text-shadow: 0 0 10px rgba(234, 225, 201, 0.3);
}

.opening-time {
    font-family: var(--header-font);
    font-size: 5rem;
    font-weight: normal;
    letter-spacing: 0.02em;
    color: #FFF;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* SCROLL DOWN ELEMENT */
.scroll-down-container {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #EAE1C9;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.scroll-down-container:hover {
    opacity: 1;
    color: #fff;
}

.scroll-text {
    font-family: var(--body-font);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.mouse-icon {
    width: 22px;
    height: 36px;
    border: 2px solid #EAE1C9;
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 0.25rem;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: #EAE1C9;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    animation: scrollWheel 1.5s infinite;
}

.chevron-down-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.25rem;
    color: #EAE1C9;
}

.chevron-down-arrows svg {
    width: 14px;
    height: 14px;
    margin-top: -6px;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

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

/* SECTION 2 - EVENTS */
.events-section-2 {
    background-color: #8d5b33;
    padding: 5rem 0 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.events-section-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.events-carousel {
    position: relative;
    width: 100%;
    height: 480px;
    border: 2px solid #FFF;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.event-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.event-slide.active {
    opacity: 1;
    z-index: 10;
}

.event-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 100%);
    z-index: 1;
}

.event-slide-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    max-width: 600px;
    text-align: left;
}

.event-slide-title {
    font-family: var(--body-font);
    font-weight: bold;
    font-size: 1.5rem;
    color: #FFF;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: normal;
}

.event-slide-desc {
    font-family: var(--body-font);
    font-weight: 300;
    font-size: 0.95rem;
    color: #FFF;
    line-height: 1.5;
}

.events-btn-full {
    display: block;
    width: 100%;
    border: 1px solid #FFF;
    background: transparent;
    color: #FFF;
    text-align: center;
    padding: 1.1rem;
    font-family: var(--body-font);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: var(--transition);
    cursor: pointer;
}

.events-btn-full:hover {
    background-color: rgba(255, 255, 255, 0.1);
    letter-spacing: 0.2em;
}

.events-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

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

.event-dot.active {
    background: #FFF;
    transform: scale(1.25);
}

/* SECTION 3 - PUBLIC OVERVIEW */
.overview-section {
    background-color: #E6DCC5;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.separator-img {
    width: 100%;
    display: block;
    padding: 0;
    margin-bottom: 6rem;
}

.overview-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: flex-start;
    padding: 0 3rem;
}

.overview-left {
    display: flex;
    flex-direction: column;
}

.overview-title {
    font-family: var(--header-font);
    font-size: 4rem;
    color: #8C6239;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.overview-desc {
    font-family: var(--body-font);
    font-size: 1.05rem;
    color: #2e241c;
    max-width: 500px;
    line-height: 1.6;
    font-weight: 300;
}

.overview-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    margin-top: 1rem;
}

.overview-address {
    font-family: var(--body-font);
    font-size: 0.85rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    max-width: 320px;
}

.overview-btn-location {
    display: inline-block;
    background-color: #8C6239;
    color: #FFF;
    text-decoration: none;
    padding: 1rem 3rem;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-align: center;
    border: none;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(140, 98, 57, 0.15);
}

.overview-btn-location:hover {
    background-color: #724f2d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(140, 98, 57, 0.3);
}

.overview-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(140, 98, 57, 0.2);
    margin: 4rem 0 0;
}

.overview-lottie-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 0;
}

.overview-lottie-container dotlottie-player {
    width: 100%;
    height: auto;
    max-height: 480px;
    display: block;
}

@media (max-width: 768px) {
    .overview-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-right {
        align-items: flex-start;
        text-align: left;
    }

    .overview-title {
        font-size: 3rem;
    }
}

/* GALLERY SLIDER SECTION */
.gallery-section {
    background-color: #E6DCC5;
    padding: 3rem 0 6rem 0;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-wrapper {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    display: flex;
    padding: 0 3rem;
}

.gallery-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
}

.gallery-card {
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    overflow: hidden;
    border: 1px solid rgba(140, 98, 57, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-color: #F5F1E6;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

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

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #8C6239;
    background: transparent;
    color: #8C6239;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-btn:hover {
    background: #8C6239;
    color: #FFF;
}

.gallery-btn svg {
    width: 20px;
    height: 20px;
}

/* MENU SECTION WITH INTERACTIVE TABS */
.menu-section {
    width: 100%;
    background-color: #767739;
    border-top: 1px solid rgba(234, 225, 201, 0.25);
    border-bottom: 1px solid rgba(234, 225, 201, 0.25);
    color: #EAE1C9;
    overflow: hidden;
}

.menu-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
}

.menu-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
}

.menu-right {
    width: 400px;
    flex-shrink: 0;
    padding: 4rem 3rem;
    border-left: 1px solid rgba(234, 225, 201, 0.25);
    display: flex;
    flex-direction: column;
}

.menu-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(234, 225, 201, 0.25);
    font-family: var(--body-font);
    text-transform: uppercase;
    font-weight: 500;
}

.menu-cat-title {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.menu-cat-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(234, 225, 201, 0.25);
    margin: 0 1.5rem;
}

.menu-cat-all {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.menu-panes {
    width: 100%;
    position: relative;
}

.menu-pane {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.menu-pane.active {
    display: grid;
}

/* NEW PORTRAIT CARD DESIGN */
.new-menu-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(234, 225, 201, 0.3);
    background: transparent;
    transition: var(--transition);
    height: 100%;
}

.new-menu-img-wrapper {
    width: 100%;
    padding-top: 110%;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(234, 225, 201, 0.3);
}

.new-menu-img-wrapper img.new-menu-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.new-menu-text-bar {
    background-color: #FFF;
    color: #000;
    padding: 0.8rem 0.5rem;
    text-align: center;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.new-menu-price-text {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
}

.new-menu-card:hover {
    border-color: #EAE1C9;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.new-menu-card:hover .new-menu-text-bar {
    background-color: #EAE1C9;
    color: #767739;
}

.new-menu-card:hover .new-menu-price-text {
    color: #767739;
    opacity: 0.8;
}

/* RIGHT SIDEBAR DESIGN */
.menu-right-title {
    font-family: var(--header-font);
    font-size: 3rem;
    color: #EAE1C9;
    margin-bottom: 2rem;
    font-weight: normal;
}

.menu-tabs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.menu-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.2rem;
    border: 1px solid rgba(234, 225, 201, 0.3);
    background: transparent;
    color: #EAE1C9;
    cursor: pointer;
    transition: var(--transition);
}

.menu-tab-btn.active {
    background-color: #EAE1C9;
    color: #767739;
    border-color: #EAE1C9;
}

.menu-tab-btn:hover:not(.active) {
    background-color: rgba(234, 225, 201, 0.05);
}

.menu-tab-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.menu-tab-label {
    font-family: var(--body-font);
    font-size: 0.75rem;
    font-weight: 500;
}

.menu-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem;
    border: 1px solid rgba(234, 225, 201, 0.5);
    background: transparent;
    color: #EAE1C9;
    font-family: var(--body-font);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.menu-download-btn:hover {
    background-color: rgba(234, 225, 201, 0.08);
    border-color: #EAE1C9;
}

.menu-sidebar-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(234, 225, 201, 0.25);
    margin: 3rem 0;
}

.menu-animation-wrapper {
    width: 100%;
    border: 1px solid rgba(234, 225, 201, 0.3);
    height: 280px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
}

.menu-animation-wrapper dotlottie-player {
    width: 100%;
    height: 100%;
    display: block;
}

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

@media (max-width: 968px) {
    .menu-container {
        display: flex;
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .menu-left,
    .menu-right {
        display: contents;
    }

    .menu-right-title {
        order: 1;
        text-align: center;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(234, 225, 201, 0.25);
        padding-bottom: 1.5rem;
        width: 100%;
    }

    .menu-animation-wrapper {
        order: 2;
        border: none !important;
        background: transparent !important;
        height: auto !important;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-animation-wrapper dotlottie-player {
        width: 100%;
        max-width: 240px;
        height: 180px;
    }

    .menu-tabs-grid {
        order: 3;
        width: 100%;
        margin-bottom: 0;
    }

    .menu-cat-header {
        display: none !important;
    }

    .menu-panes {
        order: 4;
        width: 100%;
    }

    .menu-pane {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem;
    }

    .new-menu-card {
        background: #FFF !important;
        border: none !important;
        padding: 8px !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .new-menu-img-wrapper {
        border-bottom: none !important;
    }

    .new-menu-text-bar {
        background-color: #FFF !important;
        color: #000 !important;
        padding: 0.6rem 0.2rem 0.2rem 0.2rem !important;
    }

    .new-menu-price-text {
        color: #666 !important;
    }

    .menu-download-btn {
        order: 5;
        width: 100%;
        background-color: #EAE1C9 !important;
        color: #767739 !important;
        border: none !important;
        font-weight: bold;
        padding: 1.1rem;
    }

    .menu-sidebar-divider {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .menu-pane {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .menu-pane {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    .new-menu-card {
        padding: 6px !important;
    }

    .menu-container {
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }
}

/* STORY IMAGES SECTION */
.story-images-section {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background-color: #767739;
    align-items: stretch;
    overflow: hidden;
}

.story-image-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

.story-images-section img {
    width: 100%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.story-image-wrapper:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.story-image-wrapper:first-child img {
    height: auto;
}

.story-image-wrapper:last-child img {
    height: 100%;
    object-fit: cover;
}

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

    .story-image-wrapper:last-child {
        display: none;
    }
}

/* ACTIVITIES SECTION WITH JAGGED POLAROIDS & LOTTIE CHARACTERS */
.activities-section {
    background-color: #EAE1C9;
    padding: 4rem 3rem;
    width: 100%;
    border-top: 1px solid rgba(234, 225, 201, 0.1);
}

.activities-inner-card {
    background-color: #8C6239;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 0 0 0;
    position: relative;
    overflow: hidden;
    color: #EAE1C9;
    outline: 1.5px solid rgba(234, 225, 201, 0.4);
    outline-offset: -20px;
}

.activities-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.activities-header-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.activities-header-icon.spin {
    animation: spinRecord 12s linear infinite;
}

@keyframes spinRecord {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.activities-title {
    font-family: var(--header-font);
    font-size: 3rem;
    color: #EAE1C9;
    font-weight: normal;
    text-align: center;
}

.activities-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

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

.activities-polaroid-card {
    background-color: #FFF;
    padding: 1rem 1rem 2rem 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    filter: url(#torn-paper);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.activities-polaroid-card:hover {
    transform: translateY(-8px) scale(1.02) rotate(1.5deg) !important;
}

.activities-polaroid-card:nth-child(even) {
    transform: rotate(-1.5deg);
}

.activities-polaroid-card:nth-child(odd) {
    transform: rotate(1deg);
}

.activities-polaroid-card:nth-child(3n) {
    transform: rotate(0.8deg);
}

.activities-polaroid-img-wrapper {
    width: 100%;
    padding-top: 95%;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.activities-polaroid-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activities-polaroid-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0 0.2rem;
}

.activities-polaroid-date {
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.8rem;
}

.activities-mountain-container {
    width: 100%;
    position: relative;
    margin-top: 4rem;
    line-height: 0;
}

.activities-mountain-svg {
    width: 100%;
    height: auto;
    display: block;
}

.activities-characters-row {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 6rem;
    z-index: 10;
    pointer-events: none;
}

.character-col {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 320px;
}

.character-col dotlottie-player {
    width: 100%;
    max-width: 320px;
    height: 100%;
    display: block;
}

@media (max-width: 968px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .activities-characters-row {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .activities-section {
        padding: 2rem 1rem;
    }

    .activities-inner-card {
        outline-offset: -10px;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .activities-title {
        font-size: 2.2rem;
    }

    .activities-grid-container {
        padding: 0 1.5rem;
    }

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

    .activities-mountain-container {
        display: none !important;
    }

    .character-col {
        height: 220px;
    }

    .activities-characters-row {
        position: relative;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 2rem;
        padding: 0 1rem;
    }
}

/* FOOTER DESIGN */
footer {
    background-color: #8C6239;
    border-top: 1px solid rgba(234, 225, 201, 0.25);
    padding: 6rem 0 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    color: #EAE1C9;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    margin-bottom: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    font-family: var(--body-font);
    font-weight: bold;
    font-size: 1.1rem;
    color: #EAE1C9;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #EAE1C9;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: var(--body-font);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2.5rem;
}

.footer-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #EAE1C9;
    color: #8C6239;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: bold;
    font-family: var(--body-font);
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-whatsapp-btn:hover {
    opacity: 0.95;
}

.footer-social-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.footer-social-title {
    font-family: var(--body-font);
    font-size: 0.95rem;
    font-weight: bold;
    color: #EAE1C9;
}

.footer-social-icons {
    display: flex;
    gap: 1.2rem;
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    stroke: #EAE1C9;
    fill: none;
    stroke-width: 2;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.footer-social-icon:hover {
    opacity: 0.8;
}

.footer-illustration-centered {
    width: 100%;
    max-width: 580px;
    height: auto;
    display: block;
    margin: 0 auto;
    pointer-events: none;
}

.footer-copyright-bar {
    width: 100%;
    background-color: #795431;
    border-top: 1px solid rgba(234, 225, 201, 0.15);
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #EAE1C9;
    font-size: 0.9rem;
    font-family: var(--body-font);
}

.footer-copyright-bar span {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
        padding: 0 2rem;
    }

    .footer-right {
        align-items: flex-start;
    }

    .footer-social-section {
        align-items: flex-start;
    }

    .footer-copyright-bar {
        padding: 1.5rem 2rem;
    }
}

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

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes spinVinyl {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .story-container,
    .ae-grid,
    .lottie-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .slide-content {
        padding: 3rem 2rem;
    }

    .slider-container {
        height: 450px;
    }

    .slider-controls {
        right: 2rem;
    }

    .nav-links {
        display: none !important;
    }

    .mobile-nav-toggle {
        display: flex !important;
    }

    .vinyl-showcase {
        order: -1;
    }
}
