/* Detail Page Specific Styles */
body {
    background: #fff;
}

.nav-menu a {
    color: var(--primary-dark);
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-container {
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.breadcrumb {
    grid-column: 1 / -1;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 5px;
}

.activity-header {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.activity-title {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.activity-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 14px;
    line-height: normal;
}

.stars {
    color: #fbbf24;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    letter-spacing: 2px;
}

.gallery-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    height: 600px;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-main {
    height: 100%;
}

.gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 100%;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 !important;
}

.gallery-img-half {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 !important;
}

/* Main Content */
.activity-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.feature-icon {
    color: var(--accent-gold);
    font-size: 18px;
}

.description p {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.8;
}

.highlights {
    list-style: none;
    padding: 0;
}

.highlights li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.highlights li::before {
    content: "•";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Booking Sidebar */
.booking-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.badge-sell-out {
    background: #fef2f2;
    color: #ef4444;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.price-tag span {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
}

.btn-check {
    background: #0071eb;
    background: var(--accent-gold);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.btn-check:hover {
    background: var(--accent-dark-gold);
}

.benefits {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: #555;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-icon {
    color: #10b981;
}

/* Reviews */
.review-box {
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

@media (max-width: 900px) {
    .detail-container {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: static;
        margin-bottom: 40px;
    }

    .gallery-grid {
        height: 300px;
    }
}