/* Cinematic Grid Styles for Camps */
#camps {
    padding-top: 180px;
    padding-bottom: 100px;
}

/* Fix for Section Title Font Weight and Style */
.section-title {
    font-weight: 300 !important;
    /* Force lighter weight */
    letter-spacing: 2px;
    text-align: center;
    display: block !important;
    width: 100%;
}

/* Section Titles */
.section-titles {
    font-size: 2rem;
    /* Larger as requested */
    font-weight: 300 !important;
    /* Force lighter weight */
    letter-spacing: 2px;
    text-align: left;
    display: block !important;
    width: 100%;
    margin-bottom: 25px;
    margin-top: 25px;
    text-transform: uppercase;
}

.section-title::after {
    content: none !important;
    display: none !important;
}

.section-title::after {
    content: none !important;
    display: none !important;
}

.camps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Vertical Card Layout for Grid */
.camp-card {
    display: flex;
    flex-direction: column-reverse;
    /* Image Top (since HTML has content first) */
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    min-height: auto;
    height: 100%;
    /* Stretch to grid height */
    text-decoration: none;
    color: inherit;
}

/* Remove reverse layout logic since all are vertical now */
.camp-card.reverse {
    flex-direction: column-reverse;
}

.camp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Content Side */
.camp-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align top */
    align-items: flex-start;
    z-index: 2;
}

.camp-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
    background: #e0e0e0;
    color: #333;
    margin-bottom: 15px;
}

.camp-tag.china {
    background: rgba(0, 119, 182, 0.1);
    color: #0077b6;
}

.camp-tag.uk {
    background: rgba(114, 9, 183, 0.1);
    color: #7209b7;
}

.camp-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
    color: #1a1a1a;
}

.camp-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: #555;
    margin-bottom: 20px;
}

.camp-details {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    margin: 0 0 20px 0;
    font-size: 0.9rem;
    /* Slightly smaller for better fit */
    color: #444;
}

.camp-details li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    /* Reduced gap */
}

.detail-icon {
    font-size: 1.2rem;
    line-height: 1.4;
    min-width: 30px;
    /* Slightly wider for consistency */
    text-align: center;
    margin-top: 1px;
}

.camp-details li div {
    flex: 1;
    /* Allow text to take remaining space */
}

.camp-details li div {
    flex: 1;
    display: flex;
    /* New: Make this a flex container */
    align-items: flex-start;
}

.camp-details li div strong {
    flex: 0 0 100px;
    /* Fixed width, no grow/shrink */
    width: 100px;
    font-weight: 700;
}

.camp-price {
    margin-bottom: 25px;
    margin-top: auto;
    /* Push to bottom */
}

.price-main {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
}

.price-sub {
    font-size: 0.9rem;
    color: #777;
    margin-left: 5px;
}

/* Image Side */
.camp-image {
    width: 100%;
    height: 250px;
    /* Fixed height for consistency */
    flex: none;
    position: relative;
    overflow: hidden;
}

.camp-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.camp-card:hover .camp-bg {
    transform: scale(1.05);
}

.camp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 20%);
    pointer-events: none;
}

.camp-card.reverse .camp-overlay {
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 20%);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .camps-container {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .camp-card,
    .camp-card.reverse {
        flex-direction: column-reverse;
        /* Image on top */
    }

    .camp-image {
        flex: none;
        height: 300px;
    }

    .camp-overlay {
        background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 20%);
    }

    .camp-content {
        padding: 40px 30px;
    }

    .camp-content h3 {
        font-size: 2.2rem;
    }
}