/* ================================
   RETREAT SINGLE PAGE STYLING
   Following Live in Art™ Master Document
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');


/* Hero Section */
.retreat-hero {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.retreat-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.retreat-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

.retreat-title {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.retreat-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 300;
    color: #F7F5F1;
    margin-bottom: 30px;
    line-height: 1.6;
}

.retreat-meta {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.retreat-meta span {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 17px;
    color: #F7F5F1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.retreat-meta i {
    color: #CBA45B;
    font-size: 17px;
}

/* Content Wrapper */
.retreat-content-wrapper {
    padding: 80px 0;
}

.retreat-section {
    margin-bottom: 80px;
}

.retreat-section:last-child {
    margin-bottom: 0;
}

/* Section Titles */
.section-title {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 39px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50px;
    background-color: #000000;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50px;
    background-color: #000000;
}

/* Description Section */
.section-content {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
}

.section-content p {
    margin-bottom: 20px;
}

/* Schedule Section */
.retreat-schedule {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    padding: 25px 0;
    border-bottom: 1px solid #D8CFC4;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-time {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: #CBA45B;
}

.schedule-activity {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
}

/* Gallery Section */
.retreat-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.retreat-cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('http://liveinartatelier.local/wp-content/uploads/2017/11/inner-404.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
}

.retreat-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.cta-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    color: #D8CFC4;
    margin-bottom: 30px;
    line-height: 1.6;
}

.retreat-cta-button {
    display: inline-block;
    background-color: #CBA45B;
    color: #FFFFFF;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 50px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.retreat-cta-button:hover {
    background-color: #B89449;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(203, 164, 91, 0.3);
    color: #FFFFFF;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .retreat-title {
        font-size: 36px;
    }

    .retreat-subtitle {
        font-size: 16px;
    }

    .retreat-meta {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .retreat-gallery {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 32px;
    }

    .retreat-content-wrapper {
        padding: 50px 0;
    }

    .retreat-section {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .retreat-hero {
        min-height: 50vh;
    }

    .retreat-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-content {
        font-size: 16px;
    }
}