/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 480px;
    overflow: hidden;
    background: var(--color-black);
}

.slides-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.slide--active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.55);
    transform: translateY(var(--hero-parallax-y, 0px)) scale(1.08);
    will-change: transform;
}

.slide-caption {
    position: absolute;
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-white);
    width: 90%;
}

.slide-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.9;
}

.slide-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.1;
    margin: 0;
}

/* Slide dots */
.slide-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0;
}

.dot--active {
    background: var(--color-white);
    transform: scale(1.2);
}

/* Slide arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: var(--color-white);
    font-size: 2.5rem;
    line-height: 1;
    padding: 6px 16px;
    cursor: pointer;
    z-index: 10;
    transition: background var(--transition);
}

.slide-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.slide-arrow--prev {
    left: 16px;
}

.slide-arrow--next {
    right: 16px;
}

/* ============================================================
   INTRO TAGLINE
   ============================================================ */
.intro-tagline {
    background: var(--color-white);
    text-align: center;
    padding: 30px 20px;
}

.intro-tagline p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-burgundy);
    line-height: 1.9;
    letter-spacing: 0.01em;
}

/* ============================================================
   MENUS BANNER (burgundy chevron / zigzag section)
   ============================================================ */
.menus-banner {
    padding: 12px 24px;
    background: var(--color-white);
}

.menus-banner-inner {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-burgundy);
    background-image:
        repeating-linear-gradient(135deg,
            transparent,
            transparent 28px,
            rgba(255, 255, 255, 0.18) 28px,
            rgba(255, 255, 255, 0.18) 30px),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 28px,
            rgba(255, 255, 255, 0.18) 28px,
            rgba(255, 255, 255, 0.18) 30px);
}

/* Inset border */
.menus-banner-inner::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.menus-label {
    display: inline-block;
    background: var(--color-burgundy);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    padding: 10px 28px;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    position: relative;
    z-index: 1;
}

.menus-label:hover {
    background: var(--color-burgundy-light);
    transform: scale(1.04);
}

/* ============================================================
   RESERVATIONS
   ============================================================ */
.reservations {
    background: var(--color-cream);
    text-align: center;
    padding: 40px 20px;
}

.section-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--color-burgundy);
    margin: 0 0 20px;
}

.section-body {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin: 0 0 32px;
}

.section-body a {
    color: inherit;
    text-decoration: underline;
}

/* ============================================================
   LOCATION / MAP
   ============================================================ */
.location {
    width: 100%;
    overflow: hidden;
}

.location-inner {
    display: flex;
    min-height: 420px;
}

.location-info {
    width: 340px;
    flex-shrink: 0;
    background: var(--color-white);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.08);
}

.location-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-burgundy);
    margin: 0 0 6px;
}

.location-phone a,
.location-address {
    font-size: 1rem;
    color: var(--color-text);
    text-decoration: none;
}

.location-phone a:hover {
    color: var(--color-burgundy);
    text-decoration: underline;
}

.hours-block {
    margin-top: 4px;
}

.hours-block strong {
    font-weight: 700;
    color: var(--color-text);
}

.hours-block p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

.location-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 4px;
    line-height: 1.6;
}

.location-info .btn {
    align-self: flex-start;
    margin-top: 8px;
}

.location-map {
    flex: 1;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
    display: block;
}

/* ============================================================
   Pintxo – Gallery Section
   Depends on the site-wide CSS variables already declared in
   the main stylesheet (--color-burgundy, --color-cream, etc.)
   Do NOT import this before the main stylesheet.
   ============================================================ */

/* ---------- Section Wrapper ---------- */
.gallery-section {
    background: var(--color-white);
    padding-bottom: 72px;
    overflow: hidden;
}

/* ============================================================
   PHOTO GRID
   3-col masonry-style on desktop.
   Tall items span 2 rows; wide items span 2 columns.
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 6px;
    margin: 0 auto;
    padding: 12px 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--color-black);
}

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition), filter var(--transition);
    will-change: transform;
}

/* ============================================================
   CTA BUTTON
   ============================================================ */
.gallery-cta {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .location-inner {
        flex-direction: column;
    }

    .location-info {
        width: 100%;
        box-shadow: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .location-map iframe {
        min-height: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        padding: 0 16px;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

}

@media (max-width: 768px) {
    .slide-caption {
        bottom: 55%;
    }

    .hero {
        height: 60vh;
    }

    .intro-tagline p {
        font-size: 0.95rem;
    }

    .menus-banner-inner {
        height: 150px;
    }

    .gallery-intro p {
        font-size: 0.95rem;
    }
}

@media (max-width: 560px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
        gap: 4px;
        padding: 0;
    }

    .gallery-item--wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-intro {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.6rem;
    }

    .slide-eyebrow {
        font-size: 0.65rem;
    }

    .location-info {
        padding: 28px 20px;
    }
}

#reservations {
    scroll-margin-top: 120px;
}