/* ═══ RESTAURANT PAGE STYLES ═══ */

/* ── Split Section: Text + Carousel side by side ── */
.rest-split-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 6rem 8%;
    gap: 4rem;
    box-sizing: border-box;
}

.rest-split-white {
    background-color: #ffffff;
}

.rest-split-tinted {
    background-color: #f5f0e8;
}

.rest-split-reverse {
    flex-direction: row-reverse;
}

.rest-split-reverse > .rest-split-text,
.rest-split-reverse > .rest-split-carousel {
    max-width: 700px;
}

/* Text side */
.rest-split-text {
    flex: 0 0 40%;
    max-width: 40%;
}

.meal-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold, #b08d57);
    margin-bottom: 1rem;
}

.rest-split-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--text-color, #2c2c2c);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.rest-split-text p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.rest-split-text .section-btn {
    margin-top: 1.5rem;
}

/* Carousel side */
.rest-split-carousel {
    flex: 1;
    min-width: 0;
}

/* ── Restaurant Carousel ── */
.rest-carousel {
    position: relative;
    width: 100%;
}

.rest-carousel-viewport {
    overflow: hidden;
    border-radius: 4px;
}

.rest-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.rest-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
}

/* Arrows */
.rest-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0.85;
}

.rest-carousel-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.rest-carousel-prev {
    left: 12px;
}

.rest-carousel-next {
    right: 12px;
}

/* Dots */
.rest-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.2rem;
}

.rest-carousel-dot {
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.4s ease;
}

.rest-carousel-dot.active {
    width: 35px;
    background: var(--accent-gold, #b08d57);
    transform: none;
}

/* ── Quote Divider ── */
.rest-quote {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #fff;
}

.rest-quote blockquote {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--text-color, #2c2c2c);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    padding: 0 2rem;
}

.rest-quote blockquote::before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--accent-gold, #b08d57);
    margin: 0 auto 2rem;
}

.rest-quote blockquote::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--accent-gold, #b08d57);
    margin: 2rem auto 0;
}

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
    .rest-split-section {
        gap: 3rem;
        padding: 4rem 2rem;
    }

    .rest-split-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .rest-split-section {
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 1.5rem;
    }

    .rest-split-reverse {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

    .rest-split-text {
        flex: none;
        max-width: 100%;
        text-align: center;
    }

    .rest-split-carousel {
        width: 100%;
    }

    .meal-label {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    .rest-split-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .rest-split-text p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .rest-quote {
        padding: 3rem 1.5rem;
    }

    .rest-quote blockquote {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .rest-carousel-slide {
        aspect-ratio: 3 / 4;
    }
}
