/* ═══════════════════════════════════════════
   DINING PAGE — dining.css
   Premium editorial dining page design
   ═══════════════════════════════════════════ */

/* ═══ PAGE WRAPPER ═══ */
.dining-main {
    background: #fff;
    font-family: 'Raleway', sans-serif;
    color: #333;
}

/* ═══ 1. HERO BANNER ═══ */
.dining-hero-banner {
    position: relative;
    height: 65vh;
    min-height: 420px;
    overflow: hidden;
    margin-top: -70px;
}

.dining-hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
}

.dhb-collage {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 100%;
    width: 100%;
}

.dhb-collage-item {
    overflow: hidden;
    position: relative;
}

.dhb-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.dhb-collage-item:hover img {
    transform: scale(1.06);
}

/* ═══ 2. DINING OPTIONS SECTION ═══ */
.dining-options-section {
    padding: 4rem 2rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.do-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.do-desc {
    max-width: 750px;
    margin: 0 auto 2.5rem;
    font-size: 0.95rem;
    line-height: 1.85;
    color: #555;
}

.do-instruction {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 600;
    color: #222;
    margin-bottom: 2.5rem;
}

/* ═══ 3. IMAGE PRODUCT GRID ═══ */
.do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.do-grid-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
    cursor: pointer;
}

.do-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
}

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

.do-grid-item a {
    display: block;
    width: 100%;
    height: 100%;
}

/* ═══ 4. CUSTOM FULL DAY DINING ═══ */
.dining-custom-section {
    background: #fafaf8;
    padding: 0rem 2rem 3rem;
}

.dining-custom-section .dc-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.dc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.dc-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.dc-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 2.5rem;
    text-align: left;
}

.dc-text p {
    margin-bottom: 1rem;
}

.dining-btn {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    background: transparent;
}

.dining-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

.dining-btn.btn-white {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
}

.dining-btn.btn-white:hover {
    background: #fff;
    color: #1a1a1a;
}

/* ═══ 5. FULL DINING PACKAGE — DARK OVERLAY ═══ */
.dining-package-dark {
    position: relative;
    padding: 5rem 2rem;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.dining-package-dark .dp-bg {
    position: absolute;
    inset: 0;
    background: url('../img/gr.jpg') center / cover no-repeat;
    z-index: 0;
}

.dining-package-dark .dp-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 35, 45, 0.88) 0%,
        rgba(8, 42, 55, 0.85) 40%,
        rgba(5, 35, 45, 0.9) 100%
    );
}

.dining-package-dark .dp-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

/* ── Title ── */
.dp-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* ── Decorative star divider ── */
.dp-star-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.dp-star-divider span {
    font-size: 0.6rem;
}

.dp-star-divider::before,
.dp-star-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

/* ── Rates block ── */
.dp-rates {
    margin-bottom: 2.5rem;
}

.dp-rates h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.dp-rates p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.4rem;
    opacity: 0.85;
}

.dp-rates .dp-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    margin: 2rem 0;
    line-height: 1.4;
    opacity: 1;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.dp-rates .dp-note {
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.6;
    margin-top: 0.5rem;
}

/* ── 3-column meal breakdown ── */
.dp-meal-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: left;
    margin: 3rem auto;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.dp-meal-col {
    padding: 1.8rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.dp-meal-col:last-child {
    border-right: none;
}

.dp-meal-col h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
}

.dp-meal-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dp-meal-col li {
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* ── Extra info / Bar Tender ── */
.dp-extra-info {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 0.9rem;
    line-height: 1.75;
    opacity: 0.8;
}

.dp-extra-info p {
    margin-bottom: 0.8rem;
}

.dp-extra-info .dp-policy {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.dp-extra-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    margin: 2.5rem 0 1rem;
    opacity: 1;
    text-align: center;
}

.dp-extra-info .dp-beverage-label {
    font-weight: 700;
    opacity: 1;
}

/* ── CTA Buttons ── */
.dp-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1rem;
}

.dp-btns .dining-btn.btn-white {
    padding: 14px 28px;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    border-width: 1px;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.06);
}

.dp-btns .dining-btn.btn-white:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #0a2a37;
}

/* ═══ 6. PDF VIEWER ═══ */
.dining-pdf-section {
    padding: 5rem 2rem;
    text-align: center;
    background: #fff;
}

.dining-pdf-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #444;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.pdf-embed {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pdf-embed iframe {
    display: block;
    width: 100%;
    height: 650px;
    border: none;
}

/* ═══ 7. A LA CARTE ═══ */
.dining-alacarte-section {
    padding: 4rem 2rem 5rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.alc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.alc-desc {
    max-width: 750px;
    margin: 0 auto 2.5rem;
    font-size: 0.95rem;
    line-height: 1.85;
    color: #555;
}

.alc-box {
    background: #f8f3ea;
    padding: 3.5rem 3rem;
    text-align: center;
}

.alc-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.alc-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.alc-col .alc-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 1.5rem;
}

.alc-col ul {
    list-style: none;
    padding: 0;
}

.alc-col li {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* ═══ 8. BOTTOM NOTE — DIY SECTION ═══ */
.dining-note-bottom {
    background: #6b705c;
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}

.dining-note-bottom .dn-inner {
    max-width: 800px;
    margin: 0 auto;
}

.dn-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.dn-text {
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.dn-text p {
    margin-bottom: 1rem;
}

.dn-link {
    display: inline-block;
    background: #fff;
    color: #6b705c;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dn-link:hover {
    background: #f0f0f0;
    color: #4a4d3f;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 991px) {
    .dhb-collage {
        grid-template-columns: repeat(3, 1fr);
    }

    .dhb-collage-item:nth-child(4),
    .dhb-collage-item:nth-child(5) {
        display: none;
    }

    .dp-meal-cols {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .dhb-collage {
        grid-template-columns: repeat(2, 1fr);
    }

    .dhb-collage-item:nth-child(3) {
        display: none;
    }

    .dining-hero-banner {
        height: 45vh;
        min-height: 280px;
    }

    .do-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dp-meal-cols,
    .alc-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .dp-meal-col {
        text-align: center;
    }

    .dp-extra-info {
        text-align: center;
    }

    .alc-box {
        padding: 2.5rem 1.5rem;
    }

    .dp-btns {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .do-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .dining-hero-banner {
        height: 35vh;
    }
}