/* ===== Retreat Page Styles ===== */
@import url('styles.css');

/* Retreat Hero Section */
.retreat-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
    background-color: var(--primary-dark);
}

.retreat-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-on-dark);
    text-shadow: var(--shadow-sm);
    line-height: 1.2;
}

.retreat-hero .subtitle {
    font-size: 1.5rem;
    color: var(--text-on-dark);
    font-variant: small-caps;
    letter-spacing: 2px;
    margin-bottom: var(--space-xl);
    display: block;
}

.retreat-hero .hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

/* Retreat Details Section */
.retreat-details {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-sm); /* Keeps header close to content */
}

.section-subtitle {
    display: block;
    font-family: var(--font-main);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
}

.retreat-content {
    display: grid;
    gap: var(--space-xl);
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.highlight-card {
    background: var(--primary-light);
    padding: var(--space-md);
    border-radius: 8px;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--text-on-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.highlight-card h3 {
    font-family: var(--font-main);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--accent);
}

.highlight-card ul {
    display: grid;
    gap: var(--space-xs);
    padding-left: var(--space-md);
}

.highlight-card li {
    position: relative;
    color: var(--text-muted);
}

.highlight-card li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: -15px;
}

.included-section h3 {
    margin-bottom: var(--space-md);
    color: var(--accent);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.included-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
}

.included-item i {
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.schedule-section h3 {
    margin-bottom: var(--space-md);
    color: var(--accent);
}

.schedule-timeline {
    display: grid;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--primary-medium);
}

.time {
    font-weight: 600;
    color: var(--accent);
}

.activity {
    color: var(--text-muted);
}

/* Booking Card */
.booking-card {
    position: relative;
}

.booking-container {
    position: sticky;
    top: 100px;
    background: var(--primary-light);
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.booking-container h3 {
    text-align: center;
    margin-bottom: var(--space-md);
    color: var(--accent);
}

.price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    text-align: center;
    color: var(--accent);
}

.price span {
    display: block;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--text-muted);
}

.dates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    color: var(--text-muted);
    margin: var(--space-sm) 0 var(--space-md);
}

.dates i {
    color: var(--accent);
}

.divider {
    height: 1px;
    background: var(--primary-medium);
    margin: var(--space-lg) 0;
}

.booking-highlights {
    display: grid;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
}

.highlight-item i {
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.contact-prompt {
    text-align: center;
}

.contact-prompt p {
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--accent);
}

.contact-link:hover {
    text-decoration: underline;
}

/* Gallery Section */
.retreat-gallery {
    padding: var(--space-xl) 0;
    background-color: var(--primary-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
    color: var(--text-on-dark);
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Image Grid Section */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.image-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    background: var(--primary-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-card:hover .image-placeholder img {
    transform: scale(1.05);
}

.image-caption {
    padding: 0 var(--space-md) var(--space-md);
}

.image-caption p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Pricing Section Styles */
.pricing-section {
    margin-top: var(--space-md);
}

.pricing-section h4 {
    font-size: 1rem;
    color: var(--accent);
    margin: var(--space-md) 0 var(--space-sm);
    font-family: var(--font-main);
}

.pricing-section h4 span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: normal;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    display: grid;
    gap: var(--space-sm);
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    border-bottom: 1px dashed var(--primary-medium);
}

.price-type {
    color: var(--text-muted);
}

.price-amount {
    font-weight: 600;
    color: var(--accent);
}

/* Testimonials Section */
.retreat-testimonials {
    padding: 0 0 var(--space-md) 0; /* Top padding removed, keeps bottom padding */
    background-color: var(--white);
}

.testimonial-carousel {
    margin-top: 0; /* Ensures no additional spacing */
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    padding: var(--space-md);
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background: var(--primary-light);
    padding: var(--space-lg);
    border-radius: 12px;
    text-align: center;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-medium);
    line-height: 0;
    position: relative;
}

.testimonial-text::before {
    margin-right: var(--space-xs);
}

.testimonial-text::after {
    margin-left: var(--space-xs);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--space-sm);
    border: 3px solid var(--primary-medium);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.name {
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--accent);
}

.year {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.carousel-controls button {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 1.2rem;
    cursor: pointer;
    padding: var(--space-xs);
    transition: var(--transition-fast);
}

.carousel-controls button:hover {
    color: var(--primary-dark);
}

.indicators {
    display: flex;
    gap: var(--space-xs);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-medium);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--accent);
}

/* CTA Section */
.retreat-cta {
    padding: var(--space-xl) 0;
    background: linear-gradient(to right, var(--accent), var(--primary-dark));
    color: var(--text-on-dark);
    text-align: center;
}

.retreat-cta h2 {
    margin-bottom: var(--space-md);
    color: var(--text-on-dark);
}

.retreat-cta p {
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    color: var(--primary-light);
}

/* Experience Intro Section */
.experience-intro {
    margin-bottom: var(--space-xl);
}

.experience-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-md);
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.experience-intro:hover .experience-image img {
    transform: scale(1.03);
}

.experience-text {
    padding-top: 2em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.experience-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-container {
        position: relative;
        top: auto;
        margin-top: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .retreat-hero {
        height: 60vh;
    }
    
    .retreat-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .highlight-cards {
        grid-template-columns: 1fr;
    }
    
    .experience-image {
        aspect-ratio: 16/9;
    }
    
    .experience-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .retreat-hero {
        height: 50vh;
    }
    
    .retreat-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .retreat-hero .hero-cta {
        flex-direction: column;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 80px 1fr;
    }
}

/* Enlarged Testimonial Text Version */
.testimonial-text {
    font-size: 1.6rem; /* Increased from 1.1rem */
    line-height: 1.6; /* Slightly looser for readability */
    margin-bottom: var(--space-md);
    color: var(--text-on-light); /* More contrast */
    font-weight: 400; /* Slightly bolder */
}

.testimonial-text::before,
.testimonial-text::after {
    font-size: 2rem; /* Larger quote marks */
}

.testimonial-content {
    padding: var(--space-lg); /* More padding for larger text */
}

/* Keep all other compact styling from previous version */
.video-responsive-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (change this for other ratios) */
    height: 0;
    overflow: hidden;
  }
  
  .video-responsive-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .video-responsive-container {
    background: #000 url('placeholder.jpg') center/cover no-repeat;
  }