@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ══════════════════════════════════════════════════════════════════════════
   HERO SECTION (Cinematic Full Width)
══════════════════════════════════════════════════════════════════════════ */
.detail-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.detail-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.detail-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; 
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.detail-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   PACKAGE OVERVIEW
══════════════════════════════════════════════════════════════════════════ */
.detail-overview {
    padding: 80px 20px 40px;
    background: #ffffff;
    text-align: center;
}

.overview-inner {
    max-width: 900px;
    margin: 0 auto;
}

.overview-icon {
    font-size: 2rem;
    color: #6d4c41; 
    margin-bottom: 20px;
}

.overview-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.overview-desc {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #4a4a4a;
}

/* ══════════════════════════════════════════════════════════════════════════
   FEATURED IMAGE
══════════════════════════════════════════════════════════════════════════ */
.detail-featured-image {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.detail-featured-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

/* ══════════════════════════════════════════════════════════════════════════
   INCLUSIONS SECTION (Split Layout)
══════════════════════════════════════════════════════════════════════════ */
.detail-inclusions {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.inclusions-image {
    flex: 1;
}

.inclusions-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 500px;
}

.inclusions-content {
    flex: 1;
    padding: 40px 0;
}

.inclusions-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.inclusions-grid p {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #4a4a4a;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.inclusions-grid p::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #a8a8a8;
}

/* ══════════════════════════════════════════════════════════════════════════
   ACTION BAR (Divider + Button)
══════════════════════════════════════════════════════════════════════════ */
.detail-action-bar {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.detail-action-bar::before {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    top: 50%;
    height: 1px;
    background: #000;
    z-index: 1;
}

.btn-book-direct {
    position: relative;
    z-index: 2;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #ffffff;
    background: #bfa571; 
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
    transition: background 0.3s ease;
}

.btn-book-direct:hover {
    background: #a38956;
}

@media (max-width: 768px) {
    .detail-inclusions {
        flex-direction: column;
    }
    .inclusions-grid {
        grid-template-columns: 1fr; 
    }
    .detail-hero-title {
        font-size: 2.2rem;
    }
    .overview-title {
        font-size: 2rem;
    }
}
