:root {
    --primary-color: #8B4513;
    --secondary-color: #C98A4B;
    --accent-color: #CD853F;
    --background-color: #FDF5E6;
    --text-color: #2C1810;
    --light-text: #FDF5E6;
    --offwhite: #F8F6F2;
    --spacing-unit: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    background-image: linear-gradient(rgba(253, 245, 230, 0.3), rgba(253, 245, 230, 0.3)), url('mountain-sacred-geometry.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Header & Navigation */
header {
    background-color: #B07A3B;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-unit);
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-text);
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-text);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo a:hover {
    color: var(--accent-color);
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 300px;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
    text-shadow: 0 2px 8px rgba(44,24,16,0.18);
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: normal;
    color: var(--light-text);
    text-shadow: 0 2px 8px rgba(44,24,16,0.18);
}

.hero-content .dates-location-content {
    margin-top: 4rem;
}

.hero-content .dates-location-content h2.dates-highlight,
.hero-content .dates-location-content h2.location-highlight {
    color: #B07A3B !important;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400 !important;
    font-size: 3.5rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.3em;
    text-shadow: 0 2px 8px rgba(44,24,16,0.28);
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

/* Intro Section */
.intro {
    background-color: rgba(255, 255, 255, 0.9);
}

.opening-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

/* Pillars Section */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pillar {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
}

.pillar h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Offerings Section - vertical stack */
.offerings-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.offering {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
}

.offering h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.faq-item {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.policy-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-list li {
    margin-bottom: 0.5rem;
}

.policy-list li:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: #B07A3B;
    color: var(--light-text);
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* Hosts Page Styles */
.hosts-hero {
    height: 50vh;
    min-height: 300px;
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
}

.hosts-hero .hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hosts-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.host {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    padding: 2rem;
    gap: 2.5rem;
    transition: transform 0.3s ease;
    position: relative;
}

.host:hover {
    transform: translateY(-5px) scale(1.01) rotate(-0.5deg);
}

.host-image {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.10);
    background: linear-gradient(135deg, #e7d3b1 60%, #bfa77a 100%);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border: 4px solid #f5e7d0;
}

.host-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(10%) contrast(1.1);
    transition: filter 0.3s;
}

.host:hover .host-image img {
    filter: grayscale(0%) contrast(1.2) brightness(1.05);
}

.host-content {
    flex: 1;
    padding: 0.5rem 0;
}

.host-content h3 {
    margin: 0 0 0.5rem;
    display: inline-block;
}

.host-instagram {
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.host-title {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.host-instagram svg {
    vertical-align: middle;
    margin-left: 0.2rem;
    margin-bottom: 2px;
}

.host-bio {
    margin-top: 1rem;
    line-height: 1.8;
    font-size: 1.08rem;
    color: #3d2a1a;
}

@media (max-width: 900px) {
    .host {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    .host-content {
        padding: 0;
    }
}

/* Contact Page Styles */
.contact-hero {
    height: 50vh;
    min-height: 300px;
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
}

.contact-hero .hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.captcha-container span {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.captcha-container input {
    width: 100px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
    }

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

    .nav-links a {
        margin: 0.5rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }
}

/* Responsive for offerings */
@media (max-width: 768px) {
    .offerings-grid {
        gap: 1.5rem;
    }
    .offering {
        padding: 1.2rem;
    }
}

.dates-location {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 0 1.5rem 0;
}
.dates-location-content {
    text-align: center;
}
.dates-location-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.dates-location-content h3 {
    font-size: 1.7rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.contact-email {
    text-align: center;
    margin-bottom: 2.5rem;
}
.contact-email h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.contact-email-link {
    font-size: 1.3rem;
    color: #F6E9D7;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.contact-email-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.subtitle {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.pillars h2,
.offerings h2,
.faq h2,
.dates-location-content h2 {
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(44,24,16,0.28);
}

.dates-location-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.dates-highlight,
.location-highlight {
    color: var(--primary-color) !important;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400 !important;
    font-size: 3.5rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.3em;
    text-shadow: 0 2px 8px rgba(44,24,16,0.28);
}

.reveal-email {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    margin-left: 0.5rem;
}

.reveal-email:hover {
    background-color: var(--secondary-color);
}

.reveal-email.revealed {
    background-color: var(--secondary-color);
    cursor: pointer;
} 