:root {
    --primary-bg: #faf8f5;
    --secondary-bg: #f4ebe0;
    --accent: #c17c54;
    --accent-dark: #8b6f47;
    --accent-light: #d4a574;
    --text-primary: #2a2a2a;
    --text-secondary: #6b6b6b;
    --text-light: #9a9a9a;
    --overlay-dark: rgba(42, 42, 42, 0.85);
    --overlay-light: rgba(250, 248, 245, 0.95);
    --gradient-beige: linear-gradient(135deg, #d4c4b0 0%, #faf8f5 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease
}

.text-white {
    color: white !important
}

.text-center {
    text-align: center !important
}

.mt-2 {
    margin-top: 2rem !important
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--primary-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem)
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem)
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem)
}

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-secondary)
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.allergen-img {
    width: 48px;
    height: 48px;
    vertical-align: middle;
    margin-left: 10px;
    object-fit: contain;
    cursor: help;
    transition: transform 0.3s ease
}

.allergen-img:hover {
    transform: scale(1.2)
}

@media (max-width:768px) {
    .allergen-img {
        width: 38px;
        height: 38px
    }
}

@media (max-width:480px) {
    .allergen-img {
        width: 32px;
        height: 32px;
        margin-left: 6px
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-beige);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.6s cubic-bezier(.34, 1.56, .64, 1);
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

#splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100vh);
    pointer-events: none
}

.splash-logo {
    max-width: 200px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    filter: drop-shadow(2px 2px 4px rgb(0 0 0 / .15))
}

.splash-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    letter-spacing: 3px;
    font-weight: 700
}

.splash-loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgb(193 124 84 / .2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite
}

@media (max-width:768px) {
    .splash-logo {
        max-width: 150px;
        margin-bottom: 1.5rem
    }

    .splash-text {
        font-size: 2rem;
        margin-bottom: 1.5rem
    }
}

@media (max-width:480px) {
    .splash-logo {
        max-width: 120px;
        margin-bottom: 1rem
    }

    .splash-text {
        font-size: 1.5rem;
        margin-bottom: 1rem
    }

    .splash-loader {
        width: 40px;
        height: 40px;
        border: 2px solid rgb(193 124 84 / .2)
    }
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-bg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    z-index: 999
}

.main-header.header-hidden {
    transform: translateY(-100%);
    box-shadow: none
}

.main-header.scrolled {
    padding: .5rem 0;
    box-shadow: var(--shadow-md)
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001
}

.header-logo img {
    height: 120px;
    width: auto;
    max-width: 250px;
    transition: var(--transition-normal);
    filter: drop-shadow(2px 2px 4px rgb(0 0 0 / .2))
}

.header-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(3px 3px 6px rgb(0 0 0 / .3))
}

.main-header.scrolled .header-logo img {
    height: 90px
}

.header-reservations {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--accent);
    font-weight: 600;
    margin-left: auto;
    margin-right: 1.5rem
}

.header-reservations i {
    font-size: 1.15rem
}

.header-reservations a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease
}

.header-reservations a:hover {
    color: var(--accent-dark);
    transform: scale(1.05)
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none
}

.main-nav a {
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
    padding: .5rem 0;
    transition: color var(--transition-normal)
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition-normal);
    transform: translateX(-50%)
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%
}

.main-nav a:hover {
    color: var(--accent)
}

.lang-switcher {
    display: flex;
    gap: 1rem;
    align-items: center
}

.lang-btn {
    padding: 0;
    background: #fff0;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .6
}

.lang-btn img {
    width: 22px;
    height: auto;
    display: block;
    box-shadow: 0 2px 5px rgb(0 0 0 / .2);
    border-radius: 2px
}

.lang-btn:hover {
    transform: scale(1.1);
    opacity: 1
}

.lang-btn.active {
    opacity: 1;
    transform: scale(1.1);
    background: #fff0;
    border: none;
    box-shadow: none
}

.lang-btn::before {
    content: none
}

.mobile-lang-switcher {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    gap: .4rem;
    z-index: 1003
}

.mobile-lang-switcher .lang-btn img {
    width: 20px;
    height: auto
}

.header-cta {
    padding: .7rem 1.5rem;
    font-size: .9rem;
    margin-left: 1rem;
    white-space: nowrap
}

@media (max-width:480px) {
    .mobile-br {
        display: none !important
    }
}

@media (max-width:968px) {
    .header-cta {
        display: none
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
    z-index: 1002
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-normal);
    border-radius: 2px
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    width: 100%
}

.hero-large {
    height: 100vh;
    min-height: 600px
}

.hero-medium {
    height: 60vh;
    min-height: 400px
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1
}

@media (max-width:768px) {
    .hero-bg {
        object-position: center center
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 3rem 2rem;
    animation: fadeInUp 1.2s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / .5) 0%, rgb(30 30 30 / .3) 100%);
    z-index: 2
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgb(0 0 0 / .6);
    font-weight: 800;
    letter-spacing: 2px
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 6px rgb(0 0 0 / .6);
    color: #fff
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-md)
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-dark);
    transition: all var(--transition-slow);
    z-index: -1
}

.btn-primary:hover::before {
    left: 0
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg)
}

.btn-outline {
    background: #fff0;
    color: #fff;
    border: 2px solid #fff
}

.btn-outline:hover {
    background: #fff;
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgb(0 0 0 / .2)
}

.card-standard {
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

@media (max-width:768px) {
    .card-standard {
        padding: 1.5rem
    }
}

.hover-zoom {
    overflow: hidden;
    display: block
}

.hover-zoom img {
    transition: transform 0.5s ease
}

.hover-zoom:hover img {
    transform: scale(1.05)
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.section {
    padding: var(--spacing-xl) var(--spacing-md)
}

.bg-secondary {
    background: var(--secondary-bg)
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg)
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--accent)
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent)
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto
}

.grid {
    display: grid;
    gap: 2rem
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
}

.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal)
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow)
}

.card:hover .card-img {
    transform: scale(1.1)
}

.card-content {
    padding: 2rem
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: .75rem;
    color: var(--text-primary)
}

.card-text {
    font-size: 1rem;
    color: var(--text-secondary)
}

.gallery-grid-3-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem
}

.gallery-grid-3-2 .gallery-item,
.gallery-grid-3-2 .category-card {
    width: calc(33.333% - 1rem);
    flex-grow: 0
}

.gallery-grid-3-2 .gallery-item:nth-child(4),
.gallery-grid-3-2 .gallery-item:nth-child(5),
.gallery-grid-3-2 .category-card:nth-child(4),
.gallery-grid-3-2 .category-card:nth-child(5) {
    width: calc(50% - 1rem);
    max-width: 400px
}

@media (max-width:768px) {

    .gallery-grid-3-2 .gallery-item,
    .gallery-grid-3-2 .category-card,
    .gallery-grid-3-2 .gallery-item:nth-child(4),
    .gallery-grid-3-2 .gallery-item:nth-child(5),
    .gallery-grid-3-2 .category-card:nth-child(4),
    .gallery-grid-3-2 .category-card:nth-child(5) {
        width: 100%;
        max-width: none
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm)
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow)
}

.gallery-item:hover img {
    transform: scale(1.15)
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgb(0 0 0 / .8), transparent);
    padding: 1.5rem;
    color: #fff;
    transform: translateY(100%);
    transition: var(--transition-normal)
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0)
}

.carousel-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--primary-bg)
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out
}

.carousel-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%
}

.carousel-slide img {
    width: 100%;
    min-width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 0 0 / .4) 0%, rgb(0 0 0 / .2) 50%, rgb(0 0 0 / .5) 100%);
    z-index: 1
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px
}

.carousel-content h1 {
    font-size: 3.5rem;
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgb(0 0 0 / .5)
}

.carousel-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #ffffff !important;
    text-shadow: 2px 2px 10px rgb(0 0 0 / .9);
    font-weight: 500
}

.carousel-content .btn {
    margin-top: 1rem
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff0;
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
    box-shadow: none
}

.carousel-btn:hover {
    background: #fff0;
    transform: translateY(-50%) scale(1.1)
}

.carousel-btn-prev {
    left: 1rem
}

.carousel-btn-next {
    right: 1rem
}

.carousel-btn i {
    font-size: 2rem;
    color: #FFF;
    filter: drop-shadow(0 2px 4px rgb(0 0 0 / .5))
}

.carousel-btn:hover i {
    color: #FFF
}

.carousel-indicators {
    display: none
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgb(255 255 255 / .5);
    border: 2px solid rgb(255 255 255 / .8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0
}

.carousel-dot:hover {
    background: rgb(255 255 255 / .8);
    transform: scale(1.2)
}

.carousel-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.3)
}

@media (max-width:900px) {
    .carousel-section {
        height: 100vh;
        min-height: 500px
    }

    .carousel-btn {
        width: 45px;
        height: 45px
    }

    .carousel-btn-prev {
        left: 1.5rem
    }

    .carousel-btn-next {
        right: 1.5rem
    }

    .carousel-slide img {
        object-position: center
    }
}

@media (max-width:480px) {
    .carousel-section {
        height: 87vh;
        min-height: 500px
    }

    .carousel-btn {
        width: 40px;
        height: 40px
    }

    .carousel-btn i {
        font-size: 1.5rem
    }

    .carousel-btn-prev {
        left: .5rem
    }

    .carousel-btn-next {
        right: .5rem
    }

    .carousel-content {
        width: 85%
    }

    .carousel-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem
    }

    .carousel-content p {
        font-size: 1.1rem;
        padding-left: 2rem;
        padding-right: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.4
    }

    .carousel-indicators {
        bottom: 1.5rem;
        gap: .5rem
    }

    .carousel-dot {
        width: 8px;
        height: 8px
    }

    .carousel-slide img {
        object-position: center
    }
}

.floating-phone-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgb(193 124 84 / .4);
    transition: all 0.3s ease;
    z-index: 998;
    text-decoration: none;
    animation: pulse 2s infinite
}

.main-nav.active~.floating-phone-btn,
body:has(.main-nav.active) .floating-phone-btn {
    opacity: 0;
    pointer-events: none
}

.floating-phone-btn:hover {
    background: var(--accent-dark);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 25px rgb(193 124 84 / .6)
}

.floating-phone-btn i {
    font-size: 1.8rem;
    color: #fff
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgb(193 124 84 / .4)
    }

    50% {
        box-shadow: 0 4px 30px rgb(193 124 84 / .7)
    }
}

@media (max-width:768px) {
    .floating-phone-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px
    }

    .floating-phone-btn i {
        font-size: 1.5rem
    }
}

.main-footer {
    background: var(--text-primary);
    color: #fff;
    padding: var(--spacing-lg) 0 var(--spacing-md)
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.3rem
}

.footer-section p {
    margin-bottom: .8rem;
    color: #ffffff;
    font-size: 1rem
}

.footer-section a {
    color: #ffffff;
    transition: var(--transition-fast)
}

.footer-section a:hover {
    color: var(--accent)
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(255 255 255 / .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal)
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px)
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgb(255 255 255 / .1);
    color: rgb(255 255 255 / .6)
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width:1024px) {
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 5rem)
    }

    .food-carousel {
        height: 600px
    }
}

@media (max-width:900px) {
    .header-container {
        padding: 2.5rem 1.5rem;
        position: relative;
        min-height: 160px;
        display: flex;
        justify-content: center
    }

    .header-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%)
    }

    .header-logo img {
        height: 135px
    }

    .header-reservations {
        display: none
    }

    .mobile-lang-switcher {
        display: flex;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        gap: .5rem;
        z-index: 1003
    }

    .lang-switcher {
        display: none
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        bottom: 2rem;
        right: 1.5rem;
        margin-top: 0;
        z-index: 10001
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary-bg);
        padding: 6rem 2rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s cubic-bezier(.77, 0, .175, 1);
        z-index: 10000;
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    .main-nav.active {
        right: 0
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        width: 100%
    }

    .main-nav a {
        font-size: 1.2rem;
        display: block
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--accent)
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--accent)
    }

    .hero-large {
        height: 87vh;
        min-height: 450px
    }

    .hero-medium {
        height: 87vh;
        min-height: 450px;
        padding-top: 80px
    }

    .section {
        padding: var(--spacing-lg) var(--spacing-sm)
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
    }

    .food-carousel {
        height: 500px
    }

    .carousel-slide img {
        max-width: 95%;
        max-height: 95%
    }
}

@media (max-width:480px) {
    .header-logo img {
        height: 115px
    }

    .header-container {
        padding: 2.2rem 1rem;
        min-height: 150px
    }

    .mobile-lang-switcher {
        top: 1.2rem;
        right: 1rem;
        gap: .4rem
    }

    .mobile-lang-switcher .lang-btn img {
        width: 18px
    }

    .hero-title {
        font-size: 2.5rem
    }

    .hero-subtitle {
        font-size: 1.1rem
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: .9rem;
        width: 100%;
        text-align: center
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center
    }

    .footer-section h3 {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .footer-section h3::after {
        content: '';
        width: 40px;
        height: 2px;
        background: var(--accent);
        margin-top: .5rem;
        display: block
    }

    .social-links {
        justify-content: center
    }

    .food-carousel {
        height: 350px
    }

    .carousel-slide img {
        max-width: 100%;
        max-height: 100%
    }
}

/* ============================================
   VACATION NOTICE MODAL
   ============================================ */

/* Modal overlay - covers entire screen */
#vacation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#vacation-modal.visible {
    opacity: 1;
}

#vacation-modal.hiding {
    opacity: 0;
}

/* Backdrop with blur */
.vacation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Modal content card */
.vacation-content {
    position: relative;
    background: linear-gradient(135deg, #faf8f5 0%, #f4ebe0 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 2px solid rgba(193, 124, 84, 0.3);
}

#vacation-modal.visible .vacation-content {
    transform: scale(1);
}

/* Close button - Larger for mobile with extended tap area */
.vacation-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(193, 124, 84, 0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
    transition: all 0.2s ease;
    padding: 10px;
    z-index: 10;
}

/* Extended tap area for mobile - invisible but clickable */
.vacation-close::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    border-radius: 50%;
    /* Área de toque 30px más grande en cada dirección */
}

.vacation-close:hover,
.vacation-close:active {
    background: var(--accent);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

/* Icon */
.vacation-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Title */
.vacation-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Message */
.vacation-message {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.vacation-dates {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1rem 0;
}

.vacation-tagline {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-dark);
    font-style: italic;
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .vacation-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }

    .vacation-icon {
        font-size: 3rem;
    }

    .vacation-title {
        font-size: 2rem;
    }

    .vacation-message {
        font-size: 1.1rem;
    }

    .vacation-dates {
        font-size: 1.3rem;
    }

    .vacation-tagline {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .vacation-content {
        padding: 1.5rem 1rem;
    }

    .vacation-title {
        font-size: 1.75rem;
    }

    .vacation-message {
        font-size: 1rem;
    }

    .vacation-dates {
        font-size: 1.2rem;
    }

    .vacation-tagline {
        font-size: 1.1rem;
    }
}

/* ============================================
   CONTACT INFORMATION MODAL
   ============================================ */

/* Modal overlay */
#contact-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#contact-info-modal.visible {
    opacity: 1;
}

#contact-info-modal.hiding {
    opacity: 0;
}

/* Backdrop */
.contact-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Modal content */
.contact-info-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 2px solid rgba(193, 124, 84, 0.2);
}

#contact-info-modal.visible .contact-info-content {
    transform: scale(1);
}

/* Close button */
.contact-info-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(193, 124, 84, 0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent);
    transition: all 0.2s ease;
    padding: 8px;
    z-index: 10;
}

/* Extended tap area */
.contact-info-close::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    border-radius: 50%;
}

.contact-info-close:hover,
.contact-info-close:active {
    background: var(--accent);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

/* Icon */
.contact-info-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

/* Title */
.contact-info-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

/* Sections */
.contact-info-section {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent);
}

.contact-info-section:last-of-type {
    margin-bottom: 0;
}

.contact-info-section h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-info-section p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

/* Phone number link */
.contact-info-phone {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(193, 124, 84, 0.3);
}

.contact-info-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(193, 124, 84, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }

    .contact-info-icon {
        font-size: 2.5rem;
    }

    .contact-info-title {
        font-size: 1.5rem;
    }

    .contact-info-section h3 {
        font-size: 1.1rem;
    }

    .contact-info-section p {
        font-size: 0.95rem;
    }

    .contact-info-phone {
        font-size: 1rem;
        padding: 0.65rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-info-content {
        padding: 1.5rem 1rem;
    }

    .contact-info-title {
        font-size: 1.3rem;
    }

    .contact-info-section {
        padding: 1rem;
    }
}

/* ============================================
   MASONRY GALLERY LAYOUT
   ============================================ */

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem auto;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.filter-btn {
    padding: 0.75rem 2.5rem;
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--accent);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.filter-btn.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(193, 124, 84, 0.3);
}

.filter-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(193, 124, 84, 0.4);
}

/* Masonry Grid */
.masonry-grid {
    column-count: 4;
    column-gap: 5px;
    padding: 0 5px;
    max-width: 1920px;
    margin: 0 auto 4rem auto;
}

@media (max-width: 1400px) {
    .masonry-grid {
        column-count: 3;
    }
}

@media (max-width: 992px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry-grid {
        column-count: 1;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

/* Hover Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-item:hover .image-overlay {
    opacity: 1;
}

.masonry-item:hover img {
    transform: scale(1.08);
}

.image-overlay i {
    font-size: 3.5rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    transition: opacity 0.15s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.lightbox-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Mobile Lightbox Adjustments */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 40px;
    }

    .lightbox-nav button {
        font-size: 1.5rem;
        padding: 1rem 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .image-overlay i {
        font-size: 2.5rem;
    }
}