/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --olive-dark: #4A4E42;
    --olive-medium: #5A5E52;
    --olive-darker: #3C4037;
    --cream: #F5F1E8;
    --brown: #7A6445;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--olive-dark);
    background-color: var(--cream);
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40,5 L42.5,37.5 L40,40 L37.5,37.5 Z M40,75 L42.5,42.5 L40,40 L37.5,42.5 Z M5,40 L37.5,42.5 L40,40 L37.5,37.5 Z M75,40 L42.5,42.5 L40,40 L42.5,37.5 Z M20,20 L37.5,37.5 L40,40 L37.5,42.5 Z M60,60 L42.5,42.5 L40,40 L42.5,37.5 Z M60,20 L42.5,37.5 L40,40 L42.5,42.5 Z M20,60 L37.5,42.5 L40,40 L37.5,37.5 Z' fill='%23F5F1E8'/%3E%3C/svg%3E") 40 40, auto;
    line-height: 1.6;
    overflow-x: hidden;
}

a, button, .media-item {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40,5 L42.5,37.5 L40,40 L37.5,37.5 Z M40,75 L42.5,42.5 L40,40 L37.5,42.5 Z M5,40 L37.5,42.5 L40,40 L37.5,37.5 Z M75,40 L42.5,42.5 L40,40 L42.5,37.5 Z M20,20 L37.5,37.5 L40,40 L37.5,42.5 Z M60,60 L42.5,42.5 L40,40 L42.5,37.5 Z M60,20 L42.5,37.5 L40,40 L42.5,42.5 Z M20,60 L37.5,42.5 L40,40 L37.5,37.5 Z' fill='%23F5F1E8'/%3E%3C/svg%3E") 40 40, pointer;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--olive-medium);
    border-radius: 5px;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--olive-medium);
    z-index: 100;
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo svg {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    color: var(--cream);
}

.site-name {
    color: var(--cream);
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    font-weight: 300;
}

.hamburger {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--cream);
    margin: 6px 0;
    transition: 0.3s;
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
}

.nav-overlay.active {
    display: flex;
}

.close-nav {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    color: var(--cream);
    font-size: 3rem;
    cursor: pointer;
    z-index: 201;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.nav-item {
    color: var(--cream);
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
    animation: slideDown 0.5s ease-out;
}

.nav-item:hover {
    opacity: 0.7;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Sections */
.page-section {
    display: none;
    padding-top: 80px;
}

.page-section.active {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 6rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

/* Retreat Info Section */
.retreat-info-section {
    background-color: var(--olive-dark);
    color: var(--cream);
    padding: 6rem 2rem;
    text-align: center;
}

.retreat-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.retreat-main-title {
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    margin-bottom: 6rem;
}

.retreat-where-when {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.where-when-label {
    font-size: 0.875rem;
    font-style: italic;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}

.where-when-title {
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    margin-bottom: 1rem;
}

.where-when-desc {
    font-size: 1.125rem;
    font-family: Georgia, serif;
}

.retreat-surrender {
    max-width: 800px;
    margin: 0 auto;
}

.surrender-title {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 2rem;
}

.surrender-subtitle {
    font-size: 1rem;
    font-style: italic;
    font-family: Georgia, serif;
    margin-bottom: 1.5rem;
}

.surrender-text {
    font-size: 1rem;
    line-height: 1.8;
    font-family: Georgia, serif;
}

/* Retreat Details */
.retreat-details {
    position: relative;
    background-color: var(--olive-darker);
    color: var(--cream);
    padding: 6rem 2rem;
    overflow: hidden;
}

.orb {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,241,232,0.3), rgba(245,241,232,0));
    filter: blur(20px);
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.orb-2 {
    left: 15%;
    top: 50%;
    animation-delay: 1s;
}

.orb-3 {
    left: 8%;
    top: 80%;
    animation-delay: 2s;
}

.orb-4 {
    right: 15%;
    top: 30%;
    animation-delay: 1.5s;
}

.orb-5 {
    right: 10%;
    top: 70%;
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.8;
    }
}

.details-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.detail-item {
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center;
    font-family: Georgia, serif;
}

/* Learn More Section */
.learn-more-section {
    background-color: #2E3229;
    padding: 4rem 2rem;
    text-align: center;
}

.learn-more-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--cream);
    color: #2E3229;
    font-size: 1.25rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    transition: opacity 0.3s;
}

.learn-more-button:hover {
    opacity: 0.8;
}

/* Past Retreats Section */
.past-retreats-section {
    background-color: #2E3229;
    color: var(--cream);
    padding: 4rem 2rem;
    text-align: center;
}

.past-retreats-title {
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
}

/* Schedule Image */
.schedule-image-section {
    width: 100%;
    display: block;
}

.schedule-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Media Carousel */
.media-carousel-container {
    position: relative;
    background-color: #2E3229;
    padding: 3rem 0;
    overflow: hidden;
}

.media-carousel {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.media-carousel::-webkit-scrollbar {
    display: none;
}

.media-item {
    flex: 0 0 400px;
    height: 600px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s;
}

.media-item:hover img,
.media-item:hover video {
    filter: grayscale(100%);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245,241,232,0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-arrow:hover {
    background: rgba(245,241,232,1);
}

.carousel-arrow.left {
    left: 2rem;
}

.carousel-arrow.right {
    right: 2rem;
}

/* Map and Contact */
.map-contact-section {
    background-color: var(--olive-dark);
    color: var(--cream);
    padding: 5rem 0;
}

.map-contact-section > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.map-container {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

.map-address {
    padding: 1rem;
    background-color: white;
    color: #333;
    font-size: 0.875rem;
    font-family: Georgia, serif;
}

.contact-side {
    display: flex;
    flex-direction: column;
}

.contact-side h2 {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.contact-side p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-family: Georgia, serif;
}

.contact-email {
    font-size: 1.25rem;
    color: var(--cream);
    transition: opacity 0.3s;
    font-family: Georgia, serif;
}

.contact-email:hover {
    opacity: 0.7;
}

/* Team Section */
.team-section {
    background-color: var(--olive-medium);
}

.team-hero {
    position: relative;
    padding: 8rem 2rem 2rem;
    text-align: center;
    overflow: hidden;
}

.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
}

.team-hero h1 {
    color: var(--cream);
    font-size: 4rem;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

.team-members {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    display: flex;
}

.member-card {
    background-color: white;
    border-radius: 200px 200px 0 0;
    padding: 2rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.member-image {
    width: 240px;
    height: 320px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--cream);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-card h3 {
    text-align: center;
    color: var(--olive-medium);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.member-title {
    text-align: center;
    color: var(--brown);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-family: Georgia, serif;
}

.member-bio {
    flex: 1;
    color: var(--olive-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: Georgia, serif;
}

.member-bio p {
    margin-bottom: 1rem;
}

.member-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--olive-medium);
    color: var(--cream);
    border-radius: 50px;
    text-align: center;
    margin-top: 1.5rem;
    font-family: Georgia, serif;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.member-button:hover {
    opacity: 0.8;
}

.team-contact {
    background-color: var(--olive-dark);
    color: var(--cream);
    padding: 4rem 2rem;
    text-align: center;
}

.team-contact h2 {
    font-size: 3rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.team-contact p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: Georgia, serif;
}

.team-contact a {
    font-size: 1.3rem;
    transition: opacity 0.3s;
}

.team-contact a:hover {
    opacity: 0.7;
}

/* Details Section */
.details-section {
    background-color: var(--cream);
}

.details-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.details-header h1 {
    font-size: 4rem;
    color: var(--olive-dark);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.details-header p {
    font-size: 1.3rem;
    color: var(--olive-dark);
    font-family: Georgia, serif;
    line-height: 1.8;
}

.room-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.room-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.room-price {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.room-price h3 {
    font-size: 2rem;
    color: var(--olive-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    color: var(--olive-medium);
    font-family: 'Cormorant Garamond', serif;
}

.room-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.room-images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.accommodations-question {
    text-align: center;
    padding: 3rem 2rem;
}

.accommodations-question h3 {
    font-size: 2rem;
    color: var(--olive-dark);
    margin-bottom: 1rem;
}

.accommodations-question a {
    font-size: 1.2rem;
    color: var(--olive-medium);
    transition: opacity 0.3s;
}

.accommodations-question a:hover {
    opacity: 0.7;
}

.included-section {
    background-color: var(--olive-medium);
    color: var(--cream);
    padding: 5rem 0;
}

.included-section > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    padding: 0 2rem;
}

.not-included {
    opacity: 0.75;
    text-align: center;
}

.not-included h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.not-included ul {
    list-style: none;
    font-size: 1rem;
    line-height: 1.8;
    font-family: Georgia, serif;
}

.included {
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--cream);
    border-radius: 10px;
    padding: 3rem;
}

.included h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.included ul {
    list-style: none;
    font-size: 1.1rem;
    line-height: 2;
    font-family: Georgia, serif;
}

.retreat-schedule {
    background-color: var(--olive-dark);
    color: var(--cream);
    padding: 5rem 0;
}

.retreat-schedule > div {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.retreat-schedule h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.schedule-day {
    text-align: center;
    margin-bottom: 3rem;
    font-family: Georgia, serif;
}

.schedule-day h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.schedule-day p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.application-form h2 {
    font-size: 4rem;
    text-align: center;
    color: var(--olive-dark);
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--olive-dark);
    font-family: Georgia, serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--olive-medium);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background-color: white;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    display: block;
    margin: 2rem auto 0;
    padding: 1rem 3rem;
    background-color: var(--olive-medium);
    color: var(--cream);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: Georgia, serif;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.3s;
}

.submit-button:hover {
    opacity: 0.8;
}

.details-contact {
    background-color: var(--olive-dark);
    color: var(--cream);
    padding: 4rem 2rem;
    text-align: center;
}

.details-contact h2 {
    font-size: 3rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.details-contact p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: Georgia, serif;
}

.details-contact a {
    font-size: 1.3rem;
    transition: opacity 0.3s;
}

.details-contact a:hover {
    opacity: 0.7;
}

/* Footer */
.footer {
    background-color: var(--olive-darker);
    color: var(--cream);
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.95);
    z-index: 300;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 3rem;
    cursor: pointer;
    z-index: 301;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245,241,232,0.2);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--cream);
    cursor: pointer;
    z-index: 301;
    transition: background 0.3s;
}

.lightbox-arrow:hover {
    background: rgba(245,241,232,0.4);
}

.lightbox-arrow.left {
    left: 2rem;
}

.lightbox-arrow.right {
    right: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        position: absolute;
        left: auto;
        right: 0;
        transform: none;
    }

    .close-nav {
        left: auto;
        right: 2rem;
        transform: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .team-members {
        grid-template-columns: 1fr;
    }

    .room-options {
        grid-template-columns: 1fr;
    }

    .room-images {
        grid-template-columns: 1fr;
    }

    .included-section {
        grid-template-columns: 1fr;
    }

    .map-contact-section {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .media-item {
        flex: 0 0 300px;
        height: 450px;
    }
}

