/* Import CSS Variables from main.css */
@import url('main.css');

/* Retreats Specific Styles */
.retreats-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--accent-pearl) 0%, var(--accent-lavender) 100%);
}

.retreats-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.retreats-hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.retreats-hero p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.retreat-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

/* Retreat Experience */
.retreat-experience {
    padding: 80px 0;
    background: white;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.experience-item {
    text-align: center;
    padding: 2rem;
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-rose);
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
}

.experience-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
}

.experience-item p {
    color: #666;
    line-height: 1.6;
}

/* Retreat Programs */
.retreat-programs {
    padding: 80px 0;
    background: #f8fffe;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-card.featured {
    border: 2px solid #4a7c59;
    transform: scale(1.02);
}

.program-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4a7c59;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-content {
    padding: 2rem;
}

.program-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.program-duration {
    color: #4a7c59;
    font-weight: 500;
    margin-bottom: 1rem;
}

.program-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.program-features span {
    color: #555;
    font-size: 0.9rem;
}

.program-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

/* Locations */
.retreat-locations {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
}

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

.location {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.location img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c5530;
    margin: 1.5rem 1.5rem 1rem;
}

.location p {
    color: #666;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
}

/* Retreat Testimonials */
.retreat-testimonials {
    padding: 80px 0;
    background: white;
}

.retreat-testimonials .testimonial {
    background: #f8fffe;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author div {
    display: flex;
    flex-direction: column;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Upcoming Retreats */
.upcoming-retreats {
    padding: 80px 0;
    background: #f8fffe;
}

.retreats-calendar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.retreat-date {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.retreat-date:hover {
    transform: translateX(10px);
}

.date-info {
    text-align: center;
    min-width: 80px;
}

.month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a7c59;
    text-transform: uppercase;
}

.day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
}

.retreat-info {
    flex: 1;
}

.retreat-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.retreat-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.retreat-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4a7c59;
}

/* Responsive */
@media (max-width: 768px) {
    .retreats-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .retreats-hero h1 {
        font-size: 2.5rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .program-card.featured {
        transform: none;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .retreat-date {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .retreat-date {
        padding: 1.5rem;
    }
}
