/* Annandale Ranch Retreat - Main Stylesheet */

/* ============================================
   CSS Variables / Brand Colors
   ============================================ */
:root {
    --white: #FFFFFF;
    --tan: #9B8066;
    --teal: #6B8E9B;
    --navy: #3C3F4F;
    --charcoal: #4A4A52;
    --sage: #B8C4B0;
    --coral: #B87366;
    --light-gray: #F5F5F5;
    --medium-gray: #E5E5E5;
}

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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--white);
    font-feature-settings: 'liga' 1, 'kern' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Navigation
   ============================================ */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 2rem 0 0 0;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

nav:hover {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0 2rem 0;
}

body.nav-solid nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.25rem 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

body.nav-solid nav:hover {
    padding: 1.25rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.nav-links-group {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.site-title {
    display: none;
}

.navbar-logo {
    height: 52px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.logo-container {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0.25rem 0;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal);
}

.nav-cta {
    background: var(--coral);
    color: white !important;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
}

.nav-cta:hover {
    background: var(--tan);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    transition: 0.3s;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, var(--sage) 0%, var(--teal) 100%);
}

.hero-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 100vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    z-index: 1;
}

.hero-overlay {
    display: none;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--coral);
    color: white;
    text-decoration: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    border: 2px solid var(--coral);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--tan);
    transform: none;
    box-shadow: none;
    border-color: var(--tan);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--teal);
    text-decoration: none;
    border: 2px solid var(--teal);
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--teal);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ============================================
   Welcome Section
   ============================================ */
.welcome-section {
    background: var(--light-gray);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.welcome-text h2 {
    color: var(--navy);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.welcome-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.welcome-video {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #e0e0e0;
}

.welcome-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Front Porch Section
   ============================================ */
.front-porch {
    position: relative;
    min-height: 100vh;
    background-image: url('https://res.cloudinary.com/dvl3ky4as/image/upload/v1762186194/ARR_Front_Porch_iqc53w.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.front-porch-content {
    width: 50%;
    background: linear-gradient(270deg,
        rgba(245, 245, 245, 0.95) 0%,
        rgba(245, 245, 245, 0.85) 30%,
        rgba(245, 245, 245, 0.6) 70%,
        rgba(245, 245, 245, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    text-align: left;
    position: relative;
}

.front-porch h2 {
    color: var(--charcoal);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.front-porch p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

/* ============================================
   Full-width Image Section
   ============================================ */
.full-width-image {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

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

.full-width-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 63, 79, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.full-width-image .image-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.full-width-image .image-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.full-width-image .scripture-ref {
    font-size: 1.2rem;
    color: var(--sage);
}

/* ============================================
   Testimony Section
   ============================================ */
.testimony-section-wrapper {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

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

.testimony-title {
    color: var(--navy);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

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

.testimony-video-card {
    background: white;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimony-video-card:hover {
    border-color: var(--teal);
}

.video-container {
    position: relative;
    width: 100%;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.testimony-info {
    padding: 1.5rem;
    text-align: center;
}

.testimony-info h4 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.testimony-info p {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   Legacy Section
   ============================================ */
.legacy-section {
    background: white;
    padding: 5rem 2rem;
}

.legacy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.legacy-content h2 {
    color: var(--navy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.legacy-subtitle {
    color: var(--teal);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.legacy-content h3 {
    color: var(--navy);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 400;
}

.legacy-content p {
    color: var(--charcoal);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* ============================================
   Support Section
   ============================================ */
.support-section {
    background: white;
    padding: 5rem 2rem;
}

.support-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.support-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.support-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.support-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--tan) 100%);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.support-card h3 {
    color: var(--navy);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.support-card .amount {
    font-size: 2.5rem;
    color: var(--coral);
    font-weight: bold;
    margin: 1rem 0;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.support-card p {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    height: 5.5rem;
    display: flex;
    align-items: flex-start;
}

.support-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--teal);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: auto;
    text-align: center;
}

.support-btn:hover {
    background: var(--navy);
    transform: translateY(-2px);
}

/* ============================================
   Partner Form Section
   ============================================ */
.partner-form-section {
    background: var(--light-gray);
    padding: 3rem 0;
}

.partner-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partner-form-container iframe {
    border: 1px solid #e0e0e0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Retreats Section
   ============================================ */
.retreats-section {
    background: white;
    text-align: center;
}

.retreats-content {
    max-width: 600px;
    margin: 0 auto;
}

.retreats-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.retreats-note {
    font-style: italic;
    color: var(--teal);
    margin-bottom: 2rem;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    width: 100%;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(60, 63, 79, 0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(107, 142, 155, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--coral);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--tan);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 115, 102, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    color: var(--navy);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.info-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.info-text strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-text {
    color: var(--charcoal);
    line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--navy);
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--sage);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--sage);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   Video Modal
   ============================================ */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 2px solid #333;
}

.video-modal video {
    width: 100%;
    height: auto;
    display: block;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-modal-close::before,
.video-modal-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
}

.video-modal-close::before {
    transform: rotate(45deg);
}

.video-modal-close::after {
    transform: rotate(-45deg);
}

/* ============================================
   Error Pages
   ============================================ */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    padding-top: 100px;
}

.error-content h1 {
    font-size: 8rem;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-content h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 400;
}

.error-content p {
    color: var(--charcoal);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1200px) {
    .support-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-image-container {
        max-height: 80vh;
    }

    .testimony-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-links-group {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero-image-container {
        max-height: 60vh;
    }

    /* Welcome */
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Front Porch */
    .front-porch {
        min-height: auto;
        padding: 4rem 0;
    }

    .front-porch-content {
        width: 100%;
        background: rgba(245, 245, 245, 0.95);
        padding: 2rem;
    }

    /* Testimony */
    .testimony-grid {
        grid-template-columns: 1fr;
    }

    /* Support */
    .support-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .support-card {
        padding: 2rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Partner Form */
    .partner-form-section {
        padding: 2rem 0;
    }

    .partner-form-container {
        padding: 0 1rem;
    }

    .partner-form-container iframe {
        height: 600px;
    }

    /* Video Modal */
    .video-modal-content {
        width: 95%;
        margin: 20px;
    }

    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }

    /* Error pages */
    .error-content h1 {
        font-size: 5rem;
    }

    .error-actions {
        flex-direction: column;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Page Hero (for About, Donate, Retreats, Contact)
   ============================================ */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background-size: cover;
    background-position: center;
    background-color: var(--navy);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(60, 63, 79, 0.85) 0%, rgba(107, 142, 155, 0.7) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero h1 {
    color: white;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.page-hero .tagline {
    color: var(--sage);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
}

/* Hero Variants */
.about-hero {
    background-image: url('https://res.cloudinary.com/dvl3ky4as/image/upload/v1762186192/ARR_Cabin_pbdwz2.png');
}

.donate-hero {
    background-image: url('https://res.cloudinary.com/dvl3ky4as/image/upload/v1756348826/ranch-sunrise_xpfpvj.png');
}

.retreats-hero {
    background-image: url('https://res.cloudinary.com/dvl3ky4as/image/upload/v1762186194/ARR_Front_Porch_iqc53w.png');
}

.contact-hero {
    background-image: url('https://res.cloudinary.com/dvl3ky4as/image/upload/v1756348826/ranch-sunrise_xpfpvj.png');
    min-height: 40vh;
}

/* ============================================
   About Page Styles
   ============================================ */
.founders-section {
    background: white;
    padding: 4rem 2rem;
}

.founders-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.founders-image {
    max-width: 600px;
    margin: 0 auto 2rem;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.founders-text h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.founders-tagline {
    color: var(--teal);
    font-size: 1.2rem;
    font-style: italic;
}

.bio-section {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.bio-content {
    max-width: 800px;
    margin: 0 auto;
}

.bio-content .lead {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--navy);
    margin-bottom: 2rem;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.bio-quote {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    background: white;
    border-left: 4px solid var(--teal);
    font-style: italic;
}

.bio-quote p {
    font-size: 1.2rem;
    color: var(--navy);
    margin: 0;
}

.partnership-section {
    background: white;
    padding: 4rem 2rem;
}

.partnership-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.partnership-content h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2rem;
    font-weight: 300;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.partnership-card {
    background: var(--light-gray);
    padding: 2rem;
    text-align: center;
}

.partnership-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.partnership-card h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.partnership-card p {
    color: var(--charcoal);
    line-height: 1.8;
}

.partnership-summary {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
    max-width: 800px;
    margin: 2rem auto 0;
}

.philosophy-section {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 300;
}

.philosophy-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.pillar {
    background: white;
    padding: 2rem;
    text-align: center;
}

.pillar-highlight {
    display: block;
    font-size: 1.3rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.pillar p {
    color: var(--charcoal);
    line-height: 1.7;
}

.philosophy-closing {
    font-style: italic;
    color: var(--navy);
}

.cta-section {
    background: var(--navy);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.cta-content p {
    color: var(--sage);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Donate Page Styles
   ============================================ */
.impact-section {
    background: white;
    padding: 4rem 2rem;
}

.impact-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.impact-content h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 300;
}

.impact-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--charcoal);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.impact-item {
    text-align: center;
    padding: 1.5rem;
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.impact-item h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.impact-item p {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.7;
}

.campaign-section {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.campaign-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.campaign-content h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2rem;
    font-weight: 300;
}

.giving-levels-section {
    background: white;
    padding: 4rem 2rem;
}

.giving-content {
    max-width: 1200px;
    margin: 0 auto;
}

.giving-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.giving-content .section-subtitle {
    text-align: center;
    color: var(--teal);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.giving-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.giving-card {
    background: var(--light-gray);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.giving-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.giving-card.featured {
    background: white;
    border: 2px solid var(--coral);
}

.giving-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--coral);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.giving-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.giving-header h3 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.giving-amount {
    font-size: 2rem;
    color: var(--coral);
    font-weight: bold;
}

.giving-amount small {
    font-size: 1rem;
    font-weight: normal;
    color: var(--charcoal);
}

.giving-body {
    padding: 1.5rem 2rem;
    flex-grow: 1;
}

.giving-body p {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.giving-body ul {
    list-style: none;
    padding: 0;
}

.giving-body ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.giving-body ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

.giving-btn {
    display: block;
    margin: 1.5rem 2rem 2rem;
    padding: 1rem;
    background: var(--teal);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.giving-btn:hover {
    background: var(--navy);
}

.donate-form-section {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.donate-form-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.donate-form-container h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.donate-form-container > p {
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.donate-form-container iframe {
    border: 1px solid var(--medium-gray);
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.other-giving-section {
    background: white;
    padding: 4rem 2rem;
}

.other-giving-content {
    max-width: 1000px;
    margin: 0 auto;
}

.other-giving-content h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2rem;
    font-weight: 300;
}

.other-giving-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.other-giving-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
}

.other-giving-item h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.other-giving-item p {
    color: var(--charcoal);
    line-height: 1.8;
}

.other-giving-item a {
    color: var(--teal);
}

.tax-info-section {
    background: var(--navy);
    padding: 2rem;
    text-align: center;
}

.tax-info-content {
    max-width: 800px;
    margin: 0 auto;
}

.tax-info-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.tax-info-content a {
    color: var(--sage);
}

/* ============================================
   Retreats Page Styles
   ============================================ */
.retreat-philosophy {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.retreat-philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.retreat-philosophy-content h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 300;
}

.retreat-philosophy-content .lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--charcoal);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.feature p {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.7;
}

.upcoming-retreats-section {
    background: white;
    padding: 4rem 2rem;
}

.upcoming-content {
    max-width: 1200px;
    margin: 0 auto;
}

.upcoming-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 2rem;
    font-weight: 300;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.event-card {
    background: var(--light-gray);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-image {
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-image.placeholder {
    background: linear-gradient(135deg, var(--sage) 0%, var(--teal) 100%);
}

.event-details {
    display: flex;
    padding: 1.5rem;
    gap: 1.5rem;
}

.event-date {
    text-align: center;
    min-width: 60px;
}

.date-month {
    display: block;
    font-size: 0.85rem;
    color: var(--teal);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.date-day {
    display: block;
    font-size: 2rem;
    color: var(--navy);
    font-weight: bold;
    line-height: 1;
}

.event-info {
    flex-grow: 1;
}

.event-info h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.event-summary {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-meta {
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.event-dates,
.event-capacity {
    display: block;
    margin-bottom: 0.25rem;
}

.event-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--teal);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.event-btn:hover {
    background: var(--navy);
}

.no-events {
    text-align: center;
    padding: 3rem;
    background: var(--light-gray);
}

.no-events p {
    color: var(--charcoal);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.retreat-types-section {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.retreat-types-content {
    max-width: 1200px;
    margin: 0 auto;
}

.retreat-types-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 2rem;
    font-weight: 300;
}

.retreat-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.retreat-type-card {
    background: white;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.retreat-type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.retreat-type-card h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.retreat-type-card p {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.retreat-type-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: left;
}

.retreat-type-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.retreat-type-card ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--teal);
}

.retreat-type-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--teal);
    text-decoration: none;
    border: 2px solid var(--teal);
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
}

.retreat-type-btn:hover {
    background: var(--teal);
    color: white;
}

.what-to-expect {
    background: white;
    padding: 4rem 2rem;
}

.expect-content {
    max-width: 1200px;
    margin: 0 auto;
}

.expect-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 2rem;
    font-weight: 300;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.expect-item {
    padding: 2rem;
    background: var(--light-gray);
}

.expect-item h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.expect-item p {
    color: var(--charcoal);
    line-height: 1.8;
}

.retreat-cta {
    background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.retreat-cta-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.retreat-cta-content p {
    color: var(--sage);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ============================================
   Campaign Thermometer Partial
   ============================================ */
.thermometer-container {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.thermometer {
    background: var(--medium-gray);
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
    margin: 1.5rem 0;
    position: relative;
}

.thermometer-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--coral) 0%, var(--tan) 100%);
    transition: width 0.5s ease;
    border-radius: 15px;
}

.thermometer-stats {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.amount-raised {
    font-size: 2rem;
    color: var(--coral);
    font-weight: bold;
}

.goal-amount {
    color: var(--charcoal);
    font-size: 1rem;
}

/* ============================================
   Responsive Adjustments for New Pages
   ============================================ */
@media (max-width: 1024px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .giving-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .retreat-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-pillars {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 40vh;
        padding: 6rem 1.5rem 3rem;
    }

    .partnership-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .giving-grid {
        grid-template-columns: 1fr;
    }

    .other-giving-grid {
        grid-template-columns: 1fr;
    }

    .experience-features {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

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

    .expect-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}
