:root {
    --brand-dark: #002d25;
    --brand-gold: #d4af37;
    --text-muted: #6c757d;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-dark);
}

h2,
h3 {
    font-family: 'Playfair Display', serif;
}

.tent-feature {
    margin-top: 5%;
}

/* Header Styles */
.subtitle {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--brand-gold);
    font-weight: 700;
}

.intro-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Gallery Styles */
.main-img-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
}

.main-img-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.badge-luxury {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 45, 37, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.thumb-container {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    height: 60px;
    transition: transform 0.2s;
}

.thumb-container:hover {
    transform: scale(1.05);
}

.thumb-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.thumb-container.active img {
    opacity: 1;
    border: 2px solid var(--brand-gold);
}

/* Features Card */
.features-card {
    background: #fff;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.feature-list {
    list-style: none;
    padding: 0;
    font-size: 0.85rem;
}

.feature-list li::before {
    content: "■";
    color: var(--brand-gold);
    margin-right: 10px;
    font-size: 0.6rem;
}

.feature-list li {
    margin-bottom: 12px;
    color: var(--brand-dark);
}

.price-tag {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-reserve {
    background: var(--brand-dark);
    color: white;
    border-radius: 10px;
    padding: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    width: 100%;
}

.btn-reserve:hover {
    background: #004439;
    color: white;
}

@media (max-width: 768px) {
    .tent-feature {
        margin-top: 15%;
    }
    .features-card {
        margin-top: 20%;
    }
    .main-img-container img {
        height: 300px;
    }
}


/* Section Header */
.gallery {
    margin-top: 5%;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.gallery-subtitle {
    font-size: 0.85rem;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    margin-bottom: 50px;
}

/* Gallery Grid */
.gallery-item {
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 25px;
    /* Matches the rounded corners in your image */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Lightbox Overlay */
#lightboxOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 45, 37, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightboxOverlay img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    text-decoration: none;
}

.cta {
    background: #c7d8cf73;
}

.standard-header {
    text-align: center;
    margin-bottom: 50px;
}

.standard-title {
    font-family: 'Playfair Display', serif;
    color: var(--brand-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.standard-subtitle {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* Amenity Card Styling */
.amenity-card {
    background-color: var(--soft-mint);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.amenity-card:hover {
    transform: translateY(-5px);
    background-color: #dcf2ea;
}

.amenity-icon {
    font-size: 2rem;
    color: var(--brand-dark);
    margin-bottom: 15px;
}

.amenity-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--brand-dark);
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .amenity-card {
        padding: 30px 15px;
    }
}