/* =====================================================
   DINING HERO SECTION – FINAL
===================================================== */

.dining-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 520px;
    overflow: hidden;
}

/* ================= BACKGROUND IMAGE ================= */

.dining-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.dining-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= SAFE AREA (KUNCI JARAK) ================= */

.dining-safe {
    position: relative;
    z-index: 2;

    height: 100%;
    display: flex;
    align-items: flex-start;   /* posisi dari atas */

    padding-top: 300px;         /* ⬅️ ATUR JARAK ATAS DI SINI */
    padding-bottom: 80px;      /* ⬅️ ATUR JARAK BAWAH DI SINI */
}

/* ================= OVERLAY PANEL ================= */

.dining-overlay {
    max-width: 800px;
    margin-left: 80px;         /* ⬅️ jarak dari sisi kiri (desktop) */

    padding: 80px 60px;        /* jarak isi text */
    background: rgba(0, 0, 0, 0.45);

    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ================= TEXT ================= */

.dining-subtitle {
    font-size: 15px;
    font-family: 'Norwester';
    letter-spacing: 3px;
    opacity: 0.85;
    margin-bottom: 16px;
}

.dining-title {
    font-family: 'Norwester';
    font-size: 54px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.dining-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0.9;
}

/* ================= ACTION BUTTONS ================= */

.dining-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    font-family: 'Norwester';
    background:  #e5e5e5;
    color: #000;
    padding: 12px 22px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background:#143d27;
    
}

.btn-solid {
    font-family: 'Norwester';
    background:  #e5e5e5;
    color: #000;
    padding: 12px 22px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-solid:hover {
    background:#143d27;
}

/* ================= TABLET ================= */

@media (max-width: 991px) {
    .dining-safe {
        padding-top: 200px;
        padding-bottom: 60px;
    }

    .dining-overlay {
        margin-left: 40px;
        padding: 60px 40px;
    }

    .dining-title {
        font-size: 48px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .dining-safe {
        padding-top: 250px;
        padding-bottom: 40px;
    }

    .dining-overlay {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        padding: 60px 24px;
        background: rgba(0, 0, 0, 0.55);
    }

    .dining-title {
        font-size: 42px;
    }

    .dining-desc {
        font-size: 16px;
    }
}


/* =====================================================
   DINING HERO ANIMATION – PRO VERSION
===================================================== */

/* ===== INITIAL STATE ===== */
.animate-box,
.animate-item,
.animate-actions {
    opacity: 0;
}

/* ===== OVERLAY BOX ===== */
.animate-box {
    transform: translateX(-80px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.animate-box.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== TEXT ITEMS (STAGGER) ===== */
.animate-item {
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ACTION BUTTONS ===== */
.animate-actions {
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-actions.is-visible {
    opacity: 1;
    transform: scale(1);
}









/* =====================================================
                  SHOWCASE SECTION
===================================================== */

.showcase-section {
    background: #ffffff;
    padding: 100px 0;
}

/* ================= HEADER CENTER ================= */

.showcase-header {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

/* SUB TITLE CENTER */
.showcase-subtitle {
    text-align: center;
}

.showcase-eyebrow {
    font-family: 'Norwester';
    display: block;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 12px;
}

.showcase-title {
    font-family: 'Norwester';
    font-size: 42px;
    letter-spacing: 3px;
    color: #2e4f3b;
    margin-bottom: 40px;
}

.showcase-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 576px) {
    .showcase-desc {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* ================= TABLET ================= */
@media (min-width: 768px) and (max-width: 991px) {
    .showcase-section {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* ================= TEXT JUSTIFY ================= */

.showcase-desc {
    text-align: justify;
    text-justify: inter-word;
}

.showcase-text {
    text-align: justify;
    text-justify: inter-word;
}

/* SUB TITLE */
.showcase-subtitle {
    font-family: 'Norwester';
    font-size: 28px;
    letter-spacing: 2px;
    color: #2e4f3b;
    margin-bottom: 20px;
}

/* ================= SUBTITLE LINE ================= */

.showcase-subtitle::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background: #2e4f3b;
    margin: 12px auto 0;
}

/* =====================================================
   SHOWCASE IMAGE SECTION
===================================================== */

.showcase-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 60px;
}

/* WRAPPER IMAGE */
.showcase-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* IMAGE */
.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ================= DESKTOP / LAPTOP ================= */
@media (min-width: 992px) {

    .showcase-images {
        align-items: start;
    }

    @media (min-width: 992px) {
    .showcase-image {
        height: 420px; /* ⬅️ SEMUA IMG SAMA */
    }
}


@media (max-width: 576px) {
    .showcase-image {
        height: 260px;
    }
}
}
.showcase-images {
    grid-auto-rows: 1fr;
}


/* ================= TABLET ================= */
@media (max-width: 991px) {
    .showcase-section {
        padding: 80px 0;
    }

    .showcase-title {
        font-size: 34px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
    .showcase-section {
        padding: 60px 0;
    }

    .showcase-header {
        margin-bottom: 40px;
    }

    .showcase-title {
        font-size: 28px;
    }

    .showcase-desc {
        font-size: 16px;
    }
}
