/* ==========================================================================
   PARAÍSO PLAYA - DESIGN SYSTEM & STYLES
   ========================================================================== */

/* Variables */
:root {
    --color-navy: #0F2042;
    --color-navy-rgb: 15, 32, 66;
    --color-pink: #FF0066;
    --color-pink-hover: #E6005C;
    --color-sand-light: #FAF7F2;
    --color-sand-dark: #EAE3DB;
    --color-white: #FFFFFF;
    --color-text-dark: #1F2E4D;
    --color-text-muted: #62728D;
    --color-accent-green: #4CAF50;
    
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-quick: all 0.2s ease;
    --shadow-soft: 0 10px 30px rgba(15, 32, 66, 0.05);
    --shadow-medium: 0 15px 40px rgba(15, 32, 66, 0.08);
    --shadow-elevated: 0 20px 50px rgba(15, 32, 66, 0.12);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

button, input, select, textarea {
    font-family: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(234, 227, 219, 0.5);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(250, 247, 242, 0.95);
    box-shadow: var(--shadow-soft);
    padding: 8px 0;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 24px;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Pinyon Script', cursive;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 0.5px;
    color: var(--color-navy);
    line-height: 1.1;
    white-space: nowrap;
}

.nav-logo {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(15, 32, 66, 0.1));
    transition: var(--transition-smooth);
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--color-navy);
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-pink);
    transition: var(--transition-quick);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-nav-reserve {
    background-color: var(--color-navy);
    color: var(--color-white) !important;
    padding: 10px 24px !important;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 4px 10px rgba(15, 32, 66, 0.15);
    transition: var(--transition-smooth) !important;
}

.btn-nav-reserve:hover {
    background-color: var(--color-pink);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 0, 102, 0.3);
}

.btn-nav-reserve::after {
    display: none !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-toggle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-navy);
    background: transparent;
    border: 1px solid var(--color-sand-dark);
    padding: 6px 14px;
    border-radius: var(--border-radius-pill);
    transition: var(--transition-quick);
}

.lang-toggle:hover {
    border-color: var(--color-pink);
    color: var(--color-pink);
}

.lang-toggle .active-lang {
    color: var(--color-pink);
}

.lang-toggle .inactive-lang {
    opacity: 0.5;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    height: 24px;
    justify-content: center;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-navy);
    transition: var(--transition-quick);
}

/* Hero Selector on Mobile */
.hero-selector-container {
    display: none;
}

/* ==========================================================================
   SPLIT LANDING HERO
   ========================================================================== */
.split-hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    overflow: hidden;
    position: relative;
}

.split-side {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    transition: var(--transition-smooth);
    z-index: 1;
}

/* Split Backgrounds (Custom styling to give high vibe) */
.yorkos-side .split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 32, 66, 0.65), rgba(255, 0, 102, 0.25)), url('paraiso-playa-cover.jpg') center/cover no-repeat;
    background-position: center 40%;
    filter: saturate(1.1) contrast(1.05);
    z-index: -1;
    transition: var(--transition-smooth);
}

.paradise-side .split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 32, 66, 0.45), rgba(44, 93, 136, 0.35)), url('paradise-cover.jpg') center/cover no-repeat;
    background-position: center 30%;
    filter: brightness(0.95);
    z-index: -1;
    transition: var(--transition-smooth);
}

.split-content {
    max-width: 480px;
    text-align: center;
    color: var(--color-white);
    transform: translateY(20px);
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.subtitle-hero {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-pink);
    display: inline-block;
    margin-bottom: 16px;
}

.title-hero {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.desc-hero {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.85;
}

.btn-hero {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    background-color: transparent;
    border: 2px solid var(--color-white);
    padding: 14px 36px;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.btn-hero:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* Hover Expanding Effect */
@media (min-width: 992px) {
    .split-side:hover {
        flex: 1.35;
        z-index: 2;
    }
    
    .split-side:hover .split-bg {
        transform: scale(1.05);
    }
    
    .split-side:hover .split-content {
        transform: translateY(0);
        opacity: 1;
    }
    
    .yorkos-side:hover .btn-hero {
        background-color: var(--color-pink);
        border-color: var(--color-pink);
        color: var(--color-white);
    }
    
    .paradise-side:hover .btn-hero {
        background-color: var(--color-white);
        border-color: var(--color-white);
        color: var(--color-navy);
    }
}

/* ==========================================================================
   LA PLAYA SECTION
   ========================================================================== */
.playa-section {
    padding: 100px 0;
    background-color: var(--color-sand-light);
    border-bottom: 1px solid var(--color-sand-dark);
}

.playa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--color-pink);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 40px;
    color: var(--color-navy);
    margin-bottom: 24px;
}

.playa-text {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
    padding: 12px 28px;
    border-radius: var(--border-radius-pill);
}

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

.playa-image-box {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.playa-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.playa-image-box:hover .playa-img {
    transform: scale(1.03);
}

/* ==========================================================================
   VENUE SECTIONS (YORKO'S & PARADISE)
   ========================================================================== */
.venue-section {
    padding: 100px 0;
    position: relative;
}

.venue-header-bg {
    width: 100%;
    height: 320px;
    margin-top: -100px; /* offset the section padding */
    margin-bottom: 60px;
    box-shadow: inset 0 -30px 40px rgba(15, 32, 66, 0.05);
}

.yorkos-venue .venue-header-bg {
    background: linear-gradient(rgba(15, 32, 66, 0.15), rgba(15, 32, 66, 0.35)), url('paraiso-playa-cover.jpg') center/cover no-repeat;
    background-position: center 40%;
}

.paradise-venue .venue-header-bg {
    background: linear-gradient(rgba(15, 32, 66, 0.15), rgba(15, 32, 66, 0.35)), url('paradise-cover.jpg') center/cover no-repeat;
    background-position: center 30%;
}

.yorkos-venue {
    background-color: var(--color-white);
}

.paradise-venue {
    background-color: #FAF6F0;
    border-top: 1px solid rgba(234, 227, 219, 0.4);
    border-bottom: 1px solid rgba(234, 227, 219, 0.4);
}

.venue-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.venue-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--color-pink);
    margin-bottom: 12px;
    display: inline-block;
}

.venue-title {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.venue-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.venue-details {
    display: inline-flex;
    justify-content: center;
    gap: 30px;
    background-color: rgba(234, 227, 219, 0.3);
    padding: 10px 24px;
    border-radius: var(--border-radius-pill);
    font-size: 14px;
}

.detail-item strong {
    color: var(--color-navy);
}

/* ==========================================================================
   MENU COMPONENT
   ========================================================================== */
.menu-controls {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--color-navy);
    background-color: var(--color-sand-light);
    padding: 10px 22px;
    border-radius: var(--border-radius-pill);
    transition: var(--transition-quick);
    border: 1px solid transparent;
}

.category-btn:hover {
    background-color: var(--color-sand-dark);
}

.category-btn.active {
    background-color: var(--color-navy);
    color: var(--color-white);
}

/* Custom categories highlight for venue themes */
.yorkos-venue .category-btn.active {
    background-color: var(--color-navy);
}

.paradise-venue .category-btn.active {
    background-color: var(--color-navy);
}

.menu-search-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(234, 227, 219, 0.4);
    padding-top: 20px;
}

.search-wrapper {
    position: relative;
    flex: 1;
    min-width: 260px;
    max-width: 400px;
}

.menu-search {
    width: 100%;
    background-color: var(--color-sand-light);
    border: 1px solid var(--color-sand-dark);
    padding: 12px 40px 12px 20px;
    border-radius: var(--border-radius-pill);
    font-size: 14px;
    color: var(--color-text-dark);
    transition: var(--transition-quick);
}

.menu-search:focus {
    border-color: var(--color-pink);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(255, 0, 102, 0.08);
}

.search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--color-text-muted);
    cursor: pointer;
    user-select: none;
}

.allergen-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    user-select: none;
}

.allergen-filter input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-sand-dark);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: var(--transition-quick);
}

.allergen-filter input[type="checkbox"]:checked {
    background-color: var(--color-pink);
    border-color: var(--color-pink);
}

.allergen-filter input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-size: 12px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    min-height: 200px;
    transition: var(--transition-smooth);
}

/* Card Design (WOW factor, Premium) */
.dish-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(234, 227, 219, 0.2);
    transition: var(--transition-smooth);
}

.dish-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--color-pink);
    transition: var(--transition-smooth);
}

.dish-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 0, 102, 0.15);
}

.dish-card:hover::before {
    height: 100%;
}

.dish-card-image {
    width: calc(100% + 56px); /* expand to match padding */
    height: 180px;
    margin-top: -28px;
    margin-left: -28px;
    margin-right: -28px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(234, 227, 219, 0.2);
}

.dish-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: var(--transition-smooth);
}

.dish-card:hover .dish-card-image img {
    transform: scale(1.06);
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.dish-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
}

.dish-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-pink);
    white-space: nowrap;
}

.dish-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.dish-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dish-tags {
    display: flex;
    gap: 6px;
}

.tag-badge {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: var(--border-radius-pill);
    text-transform: uppercase;
}

.tag-vegan {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--color-accent-green);
}

.tag-veggie {
    background-color: rgba(76, 175, 80, 0.05);
    color: var(--color-accent-green);
}

/* ==========================================================================
   DRINKS & COCKTAILS SECTION
   ========================================================================== */
.drinks-section {
    padding: 120px 0;
    background-color: var(--color-navy);
    color: var(--color-white);
}

.drinks-header {
    margin-bottom: 60px;
}

.drinks-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--color-pink);
    margin-bottom: 12px;
    display: inline-block;
    text-transform: uppercase;
}

.drinks-title {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.drinks-subtitle-p {
    font-size: 16px;
    color: rgba(250, 247, 242, 0.65);
    max-width: 600px;
    margin: 0 auto;
}

/* Customize Menu Component for Drinks (Dark Theme) */
.drinks-section .menu-controls {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(250, 247, 242, 0.08);
    box-shadow: none;
}

.drinks-section .category-btn {
    color: rgba(250, 247, 242, 0.8);
    background-color: rgba(255, 255, 255, 0.03);
}

.drinks-section .category-btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.drinks-section .category-btn.active {
    background-color: var(--color-pink);
    color: var(--color-white);
}

.drinks-section .menu-search {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(250, 247, 242, 0.1);
    color: var(--color-white);
}

.drinks-section .menu-search:focus {
    border-color: var(--color-pink);
    background-color: rgba(255, 255, 255, 0.06);
}

/* Drinks Cards - Dark Glassmorphism */
.drinks-section .dish-card {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(250, 247, 242, 0.06);
    box-shadow: none;
}

.drinks-section .dish-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 0, 102, 0.3);
}

.drinks-section .dish-title {
    color: var(--color-white);
}

.drinks-section .dish-desc {
    color: rgba(250, 247, 242, 0.6);
}

/* ==========================================================================
   RESERVATIONS SECTION
   ========================================================================== */
.reservations-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #FAF7F2, #EAE3DB);
    display: flex;
    justify-content: center;
}

.reservations-container {
    width: 100%;
    max-width: 800px;
}

.reservations-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-elevated);
    border: 1px solid rgba(234, 227, 219, 0.3);
}

.reserve-title {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--color-navy);
    margin-bottom: 16px;
    text-align: center;
}

.reserve-text-p {
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
}

.kitchen-open-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(44, 93, 136, 0.06);
    color: var(--color-navy);
    border: 1px solid rgba(44, 93, 136, 0.2);
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 30px;
    margin: 0 auto 30px auto;
    text-align: center;
    max-width: fit-content;
}

.reserve-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--color-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--color-sand-light);
    border: 1px solid var(--color-sand-dark);
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    color: var(--color-text-dark);
    transition: var(--transition-quick);
    width: 100%;
}

.form-group textarea {
    resize: vertical;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-pink);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(255, 0, 102, 0.08);
}

.btn-submit {
    background-color: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 6px 15px rgba(15, 32, 66, 0.15);
    margin-top: 12px;
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background-color: var(--color-pink);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 102, 0.3);
}

/* Segmented Control for Beach Bar Selection */
@keyframes venueShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.segmented-control {
    display: flex;
    background-color: var(--color-sand-light);
    border: 1px solid var(--color-sand-dark);
    padding: 6px;
    border-radius: var(--border-radius-sm);
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.segmented-control.shake-error {
    animation: venueShake 0.5s ease-in-out;
    border: 2px solid #e74c3c !important;
    box-shadow: 0 0 12px rgba(231, 76, 60, 0.35);
}

.segment-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-muted);
    border-radius: calc(var(--border-radius-sm) - 4px);
    cursor: pointer;
    transition: var(--transition-quick);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.segment-btn small {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.85;
    color: var(--color-text-muted);
    transition: var(--transition-quick);
    display: block;
}

.segment-btn:hover:not(.active) {
    color: var(--color-navy);
    background-color: rgba(15, 32, 66, 0.03);
}

.segment-btn.active {
    background-color: var(--color-white);
    color: var(--color-pink);
    box-shadow: 0 4px 12px rgba(15, 32, 66, 0.08);
}

.segment-btn.active small {
    color: var(--color-text-dark);
}

.quick-contact {
    margin-top: 40px;
    border-top: 1px solid var(--color-sand-dark);
    padding-top: 30px;
    text-align: center;
}

.quick-contact p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

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

.btn-whatsapp,
.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
}

.btn-phone {
    background-color: var(--color-sand-dark);
    color: var(--color-navy);
}

.btn-phone:hover {
    background-color: #D6CCC2;
    transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #0B162E;
    color: var(--color-white);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-text {
    font-family: 'Pinyon Script', cursive;
    font-size: 36px;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.1;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.footer-logo {
    height: 42px;
    width: auto;
}


.footer-brand p {
    font-size: 14px;
    color: rgba(250, 247, 242, 0.65);
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-info h4 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-pink);
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(250, 247, 242, 0.65);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 4px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-info p {
    font-size: 14px;
    color: rgba(250, 247, 242, 0.65);
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.footer-socials a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-pink);
    border: 1px solid rgba(255, 0, 102, 0.3);
    padding: 6px 16px;
    border-radius: var(--border-radius-pill);
}

.footer-socials a:hover {
    background-color: var(--color-pink);
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 13px;
    color: rgba(250, 247, 242, 0.45);
}

/* ==========================================================================
   MODAL DIALOGS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 32, 66, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-elevated);
    position: relative;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    right: 24px;
    top: 20px;
    font-size: 28px;
    color: var(--color-text-muted);
    cursor: pointer;
}

.modal-success-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--color-accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 24px;
}

.modal-content h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.modal-content p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.modal-details {
    background-color: var(--color-sand-light);
    border: 1px solid var(--color-sand-dark);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    text-align: left;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.modal-details div {
    display: flex;
    justify-content: space-between;
}

.modal-details strong {
    color: var(--color-navy);
}

.btn-modal-done {
    background-color: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 36px;
    border-radius: var(--border-radius-pill);
    transition: var(--transition-quick);
}

.btn-modal-done:hover {
    background-color: var(--color-pink);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 16px;
    }
    .logo-text {
        font-size: 26px;
    }
    .nav-logo {
        height: 32px;
    }
    .logo-container {
        margin-right: 16px;
    }
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: 12px;
    }
    .logo-text {
        font-size: 22px;
    }
    .nav-logo {
        height: 28px;
    }
    .logo-container {
        margin-right: 12px;
        gap: 8px;
    }
    .nav-menu a {
        font-size: 13px;
    }
    .btn-nav-reserve {
        padding: 8px 16px !important;
    }
    .header-weather {
        font-size: 12px;
        padding: 4px 8px;
    }
}


@media (max-width: 991px) {
    .header-container {
        padding: 14px 20px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .nav-logo {
        height: 30px;
    }

    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: var(--shadow-medium);
        border-bottom: 1px solid var(--color-sand-dark);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition-smooth);
        z-index: -1;
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 14px 24px;
        text-align: center;
        border-bottom: 1px solid rgba(234, 227, 219, 0.3);
    }
    
    .btn-nav-reserve {
        border-radius: 0;
        width: 80%;
        margin-top: 14px;
        border-radius: var(--border-radius-pill);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Split hero stacked -> now premium toggle slider on mobile */
    .split-hero {
        height: 100vh;
        min-height: 550px;
        position: relative;
        overflow: hidden;
    }
    
    .split-side {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
        padding-top: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }
    
    .split-side.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

    .split-side.active .split-content {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .split-content {
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-selector-container {
        display: flex;
        justify-content: center;
        position: absolute;
        top: 100px; /* just below the floating header */
        left: 0;
        width: 100%;
        z-index: 10;
        pointer-events: none;
    }
    
    .hero-selector {
        display: flex;
        background-color: rgba(15, 32, 66, 0.45);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 4px;
        border-radius: var(--border-radius-pill);
        pointer-events: auto;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .hero-sel-btn {
        background: transparent;
        border: none;
        padding: 8px 18px;
        font-family: var(--font-heading);
        font-size: 13px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.75);
        border-radius: var(--border-radius-pill);
        cursor: pointer;
        transition: var(--transition-quick);
        outline: none;
        white-space: nowrap;
    }
    
    .hero-sel-btn:hover {
        color: var(--color-white);
    }
    
    .hero-sel-btn.active {
        background-color: var(--color-white);
        color: var(--color-navy);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
    
    .title-hero {
        font-size: 36px;
    }
    
    /* Playa Section */
    .playa-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .playa-img {
        height: 350px;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .header-weather {
        display: none;
    }

    .logo-text {
        font-size: 22px;
    }
    
    .nav-logo {
        height: 28px;
    }
    
    .logo-container {
        gap: 8px;
        margin-right: 12px;
    }

    .section-title {
        font-size: 32px;
    }
    
    .venue-title,
    .drinks-title {
        font-size: 32px;
    }
    
    .menu-search-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-wrapper {
        max-width: 100%;
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reservations-card {
        padding: 30px 20px;
    }
    
    .reserve-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }
    
    .nav-logo {
        height: 24px;
    }
    
    .logo-container {
        gap: 6px;
        margin-right: 8px;
    }
}


/* Floating Google Review Button */
.floating-review-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--color-white);
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
    padding: 12px 22px;
    border-radius: var(--border-radius-pill);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 999;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    text-decoration: none;
}

.floating-review-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-review-btn:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-elevated);
}

.floating-review-btn .stars {
    color: #ffcc00;
    font-size: 14px;
}

@media (max-width: 767px) {
    .floating-review-btn {
        bottom: 20px;
        left: 20px;
        padding: 10px 16px;
        font-size: 11px;
    }
}

/* Floating Mobile Reserve Button (Bottom Right) */
.floating-reserve-btn {
    display: none;
}

@media (max-width: 768px) {
    .floating-reserve-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: linear-gradient(135deg, #e25f80, #c44061);
        color: #ffffff;
        padding: 12px 20px;
        border-radius: 50px;
        box-shadow: 0 8px 25px rgba(226, 95, 128, 0.45), 0 4px 10px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        z-index: 998;
        text-decoration: none;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease, visibility 0.3s ease, box-shadow 0.3s ease;
        animation: pulseReserveBtn 3s infinite;
    }

    .floating-reserve-btn:active {
        transform: scale(0.95);
    }

    .floating-reserve-btn.hidden {
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px) scale(0.9);
    }

    @keyframes pulseReserveBtn {
        0%, 100% {
            box-shadow: 0 8px 25px rgba(226, 95, 128, 0.45), 0 4px 10px rgba(0, 0, 0, 0.15);
        }
        50% {
            box-shadow: 0 10px 30px rgba(226, 95, 128, 0.7), 0 4px 12px rgba(0, 0, 0, 0.2);
        }
    }
}

/* ==========================================================================
   WEATHER WIDGET STYLES (HEADER & DETAILED)
   ========================================================================== */
.header-weather {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(234, 227, 219, 0.4);
    border: 1px solid rgba(234, 227, 219, 0.8);
    padding: 6px 12px;
    border-radius: var(--border-radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-navy);
    cursor: default;
    transition: var(--transition-quick);
}

.header-weather:hover {
    background-color: rgba(234, 227, 219, 0.7);
}

.header-weather-icon {
    font-size: 15px;
    animation: rotateWeatherIcon 10s infinite linear;
}

@keyframes rotateWeatherIcon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Detailed Weather Card in Playa Section */
.weather-widget {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-md);
    padding: 20px;
    margin-top: 24px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.weather-widget:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.weather-loading {
    text-align: center;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.weather-loading::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid var(--color-text-muted);
    border-top-color: transparent;
    border-radius: 50%;
    animation: weatherSpin 0.8s infinite linear;
}

@keyframes weatherSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.weather-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.hidden {
    display: none !important;
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(15, 32, 66, 0.08);
    padding-bottom: 8px;
}

.weather-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-navy);
}

.weather-update-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--color-accent-green);
    animation: weatherPulse 2s infinite ease-in-out;
}

@keyframes weatherPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}

.weather-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 16px;
}

.weather-card-icon {
    font-size: 40px;
    line-height: 1;
}

.weather-temp-group {
    display: flex;
    flex-direction: column;
}

.weather-card-temp {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.1;
}

.weather-card-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.weather-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background-color: rgba(250, 247, 242, 0.6);
    border-radius: var(--border-radius-sm);
    padding: 10px;
    border: 1px solid rgba(234, 227, 219, 0.4);
}

.weather-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.stat-label {
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-navy);
}

/* Hide header weather on small screens to save space */
@media (max-width: 480px) {
    .header-weather {
        display: none;
    }
}

/* ==========================================================================
   EVENTOS SECTION
   ========================================================================== */
.eventos-section {
    padding: 100px 0;
    background-color: var(--color-sand-light);
}

.eventos-header {
    margin-bottom: 50px;
}

.eventos-tag {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-pink);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.eventos-title {
    font-size: 40px;
    color: var(--color-navy);
    margin-top: 8px;
    margin-bottom: 16px;
}

.eventos-subtitle {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.evento-card {
    background: var(--color-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(234, 227, 219, 0.5);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.evento-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.evento-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.evento-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--border-radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.evento-badge.pink {
    background: var(--color-pink);
}

.evento-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.evento-date {
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--color-pink);
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.evento-title-h3 {
    font-size: 20px;
    color: var(--color-navy);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.evento-desc {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
}

.evento-btn {
    background: var(--color-navy);
    color: var(--color-white) !important;
    text-align: center;
    padding: 10px 20px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition-quick);
    border: none;
    cursor: pointer;
}

.evento-btn:hover {
    background: var(--color-pink);
    transform: translateY(-1px);
}

.evento-btn[disabled] {
    background: var(--color-sand-dark);
    color: var(--color-text-muted) !important;
    cursor: not-allowed;
    transform: none !important;
}

/* ==========================================================================
   GALERIA SECTION
   ========================================================================== */
.galeria-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.galeria-tag {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-pink);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.galeria-title {
    font-size: 40px;
    color: var(--color-navy);
    margin-top: 8px;
    margin-bottom: 16px;
}

.galeria-subtitle {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.galeria-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

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

.galeria-item:hover img {
    transform: scale(1.08);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 32, 66, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-quick);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.instagram-handle {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.galeria-cta {
    margin-top: 45px;
}

.btn-instagram {
    display: inline-block;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--color-white) !important;
    padding: 12px 30px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(204, 35, 102, 0.3);
    transition: var(--transition-smooth);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 35, 102, 0.5);
}

/* ==========================================================================
   FAQS SECTION
   ========================================================================== */
.faqs-section {
    padding: 100px 0;
    background-color: var(--color-sand-light);
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.faqs-tag {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-pink);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.faqs-title {
    font-size: 40px;
    color: var(--color-navy);
    margin-top: 8px;
    margin-bottom: 40px;
}

.faqs-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid rgba(234, 227, 219, 0.6);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-quick);
}

.faq-item.active {
    box-shadow: var(--shadow-medium);
    border-color: rgba(15, 32, 66, 0.15);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    background: transparent;
    transition: var(--transition-quick);
}

.faq-question:hover {
    color: var(--color-pink);
}

.faq-icon {
    font-size: 20px;
    color: var(--color-text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-pink);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
}

.faq-answer p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.6;
    padding-bottom: 20px;
}

/* ==========================================================================
   ALLERGEN TAGS IN DISH CARDS
   ========================================================================== */
.allergen-tags {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.allergen-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 800;
    cursor: help;
    position: relative;
    user-select: none;
    border: 1.5px solid currentColor;
}

.allergen-gf {
    color: #e67e22;
    background-color: rgba(230, 126, 34, 0.08);
}

.allergen-df {
    color: #3498db;
    background-color: rgba(52, 152, 219, 0.08);
}

.allergen-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-soft);
    z-index: 100;
    font-family: var(--font-body);
    font-weight: 500;
}

.allergen-icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


