/* Summer Camp Page Styles */

.summer-camp .camp-section {
    margin-bottom: 4rem;
}

/* Camp Schedule Table */
.camp-schedule .arrival-cell {
    background-color: #fff3cd;
    color: #856404;
    font-weight: 600;
}

.camp-schedule .departure-cell {
    background-color: #e8f5e9;
    color: #2e7d32;
    font-weight: 600;
}

.camp-schedule .meal-cell {
    background-color: #fffde7;
    color: #5d4037;
}

.camp-schedule .class-cell {
    background-color: #ffe0b2;
    color: #e65100;
    font-weight: 500;
}

.camp-schedule .ot-cell {
    background-color: #ffccbc;
    color: #bf360c;
    font-weight: 500;
}

.camp-schedule .activity-cell {
    background-color: #c8e6c9;
    color: #1b5e20;
    font-weight: 500;
}

.camp-schedule .fullday-cell {
    background-color: #b2dfdb;
    color: #00695c;
    font-weight: 500;
}

.camp-schedule .ceremony-cell {
    background-color: #f8bbd9;
    color: #880e4f;
    font-weight: 500;
}

/* Activity Cards Grid */
.activity-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.activity-card {
    display: flex;
    gap: 1rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.activity-card-image {
    flex: 0 0 200px;
}

.activity-card-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.activity-card-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activity-card-content h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.activity-card-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-item img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.service-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
}

/* Review Grid */
.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.review-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.review-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex: 0 0 60px;
}

.review-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.review-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.review-gallery img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .camp-schedule {
        font-size: 0.65rem;
    }

    .camp-schedule th,
    .camp-schedule td {
        padding: 4px 2px;
    }

    .activity-cards-grid {
        grid-template-columns: 1fr;
    }

    .activity-card {
        flex-direction: column;
    }

    .activity-card-image {
        flex: none;
    }

    .activity-card-image img {
        height: 200px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .camp-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .camp-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Camp Info Table */
.camp-info-table th {
    background-color: #00bcd4;
    color: #fff;
    width: 20%;
    vertical-align: middle;
    text-align: center;
    font-weight: 600;
}

.camp-info-table td {
    vertical-align: middle;
    color: #333;
}

.camp-info-table small {
    display: block;
    margin-top: 0.2rem;
    color: #666;
    font-size: 0.8rem;
}