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

:root {
    --cream: #FDF8F3;
    --warm-white: #FFFCF9;
    --soft-blush: #F5E6E0;
    --dusty-rose: #D4A5A5;
    --terracotta: #C4846C;
    --sage: #9CAF88;
    --sage-light: #E8EFE3;
    --warm-brown: #8B7355;
    --deep-brown: #5D4E3C;
    --charcoal: #3D3D3D;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Quicksand', sans-serif;
    
    /* Spacing */
    --section-padding: 8rem 4rem;
    --section-padding-mobile: 4rem 2rem;
    
    /* Logo Sizes */
    --logo-height-desktop: 140px;
    --logo-height-scrolled: 55px;
    --logo-height-mobile: 90px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--deep-brown);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Subtle grain texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 9999;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, var(--cream) 0%, rgba(253, 248, 243, 0.95) 50%, transparent 100%);
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(253, 248, 243, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(93, 78, 60, 0.08);
    padding: 0.5rem 4rem;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo-img {
    width: auto;
    transition: all 0.4s ease;
    display: block;
}

.logo-full {
    height: var(--logo-height-desktop);
    opacity: 1;
}

.logo-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: var(--logo-height-desktop);
    opacity: 0;
}

nav.scrolled .logo-full {
    opacity: 0;
    height: var(--logo-height-scrolled);
}

nav.scrolled .logo-icon {
    opacity: 1;
    height: var(--logo-height-scrolled);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--warm-brown);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--terracotta);
    color: var(--warm-white) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--warm-brown) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 132, 108, 0.3);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, var(--soft-blush) 0%, var(--sage-light) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -2;
}

.hero-decoration {
    position: absolute;
    top: 15%;
    right: 8%;
    width: 350px;
    height: 350px;
    border: 2px solid var(--dusty-rose);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.hero-decoration-2 {
    position: absolute;
    bottom: 20%;
    right: 25%;
    width: 150px;
    height: 150px;
    background: var(--sage);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--terracotta);
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--terracotta);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--warm-brown);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--warm-white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--warm-brown);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 132, 108, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-brown);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: 2px solid var(--dusty-rose);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--soft-blush);
    border-color: var(--terracotta);
}

/* Next Event Banner */
.next-event {
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--warm-brown) 100%);
    color: var(--warm-white);
    padding: 2rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.next-event-label {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
}

.next-event-date {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
}

.next-event-location {
    font-size: 0.95rem;
    opacity: 0.9;
}

.next-event-cta {
    background: var(--terracotta);
    color: var(--warm-white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.next-event-cta:hover {
    background: var(--dusty-rose);
    transform: scale(1.05);
}

/* Section Header Styles */
.section-header h2,
.about-content h2,
.values-header h2,
.expect-header h2,
.team-header h2,
.location-content h2,
.cta h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--deep-brown);
}

.cta h2 {
    color: var(--warm-white);
}

.location-content h2 {
    margin-bottom: 1.5rem;
}

.section-header p,
.values-header p,
.expect-header p,
.team-header p {
    color: var(--warm-brown);
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: var(--section-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--soft-blush) 0%, var(--sage-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--warm-brown);
    font-style: italic;
    position: relative;
    overflow: hidden;
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--terracotta);
    border-radius: 20px;
    opacity: 0.15;
    z-index: -1;
}

.about-content h2 span {
    color: var(--terracotta);
    font-style: italic;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--warm-brown);
    margin-bottom: 1.5rem;
}

.about-quote {
    background: var(--sage-light);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
}

.about-quote::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--sage);
    position: absolute;
    top: -10px;
    left: 15px;
    line-height: 1;
}

.about-quote p {
    font-style: italic;
    margin-bottom: 0;
    padding-left: 2rem;
}

/* Values Section */
.values {
    background: var(--soft-blush);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 3px solid var(--dusty-rose);
    border-radius: 50%;
    opacity: 0.3;
}

.values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

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

.value-card {
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--sage));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(93, 78, 60, 0.1);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--deep-brown);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--warm-brown);
    font-style: italic;
}

.value-card .attribution {
    font-size: 0.85rem;
    color: var(--terracotta);
    margin-top: 0.75rem;
    font-style: normal;
    font-weight: 500;
}

/* What to Expect */
.expect {
    padding: var(--section-padding);
    max-width: 1400px;
    margin: 0 auto;
}

.expect-header {
    text-align: center;
    margin-bottom: 5rem;
}

.expect-header p {
    max-width: 600px;
    margin: 0 auto;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
    flex-wrap: wrap;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--sage-light), var(--terracotta), var(--sage-light));
}

.timeline-item {
    text-align: center;
    flex: 1;
    max-width: 250px;
    padding: 0 1rem;
    position: relative;
}

.timeline-time {
    width: 100px;
    height: 100px;
    background: var(--warm-white);
    border: 3px solid var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--terracotta);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-time {
    background: var(--terracotta);
    color: var(--warm-white);
    transform: scale(1.1);
}

.timeline-item h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--warm-brown);
}

/* Team Section */
.team {
    background: linear-gradient(180deg, var(--cream) 0%, var(--sage-light) 100%);
    padding: var(--section-padding);
}

.team-header {
    text-align: center;
    margin-bottom: 5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: var(--warm-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(93, 78, 60, 0.12);
}

.team-photo {
    height: 280px;
    background: linear-gradient(135deg, var(--soft-blush) 0%, var(--dusty-rose) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.team-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(93, 78, 60, 0.2), transparent);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--deep-brown);
    margin-bottom: 0.3rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.team-quote {
    font-size: 0.9rem;
    color: var(--warm-brown);
    font-style: italic;
    line-height: 1.6;
}

/* Special Recognition (within Team) */
.recognition {
    max-width: 800px;
    margin: 5rem auto 0;
    padding-top: 4rem;
    border-top: 1px solid rgba(93, 78, 60, 0.15);
    text-align: center;
}

.recognition h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 0.75rem;
}

.recognition > p {
    color: var(--warm-brown);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 2.5rem;
}

.recognition-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.recognition-card {
    width: 260px;
}

.recognition-card .team-quote {
    font-size: 0.9rem;
}

.recognition-card img {
    display: block;
    width: 130px;
    height: 130px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--warm-white);
    box-shadow: 0 10px 30px rgba(93, 78, 60, 0.12);
}

.recognition-card .attribution {
    font-size: 0.85rem;
    color: var(--terracotta);
    margin-top: 0.75rem;
    font-weight: 500;
}

/* Location Section */
.location {
    padding: var(--section-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.location-content h2 span {
    color: var(--terracotta);
}

.location-details {
    margin: 2rem 0;
}

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

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--sage-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.location-item h4 {
    font-size: 1rem;
    color: var(--deep-brown);
    margin-bottom: 0.3rem;
}

.location-item p {
    font-size: 0.95rem;
    color: var(--warm-brown);
}

.location-map {
    height: 450px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(93, 78, 60, 0.15);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--warm-brown) 100%);
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}


.cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta .btn-primary {
    background: var(--terracotta);
    font-size: 1rem;
    padding: 1.2rem 2.5rem;
}

.cta .btn-primary:hover {
    background: var(--dusty-rose);
}

.social-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

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

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

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--warm-white);
    padding: 4rem;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    color: rgba(255,255,255,0.6);
    font-style: italic;
    margin-bottom: 2rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--terracotta);
}

.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .about, .location {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 2rem;
    }
    
    .logo-full {
        height: var(--logo-height-mobile);
    }
    
    .logo-icon {
        height: var(--logo-height-mobile);
    }
    
    nav.scrolled .logo-full,
    nav.scrolled .logo-icon {
        height: var(--logo-height-scrolled);
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 6rem 2rem 4rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-bg {
        width: 100%;
        clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
        opacity: 0.5;
    }
    
    .values-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        max-width: 100%;
    }
    
    .about, .expect, .location, .values, .team, .cta {
        padding: var(--section-padding-mobile);
    }
    
    .next-event {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-logo img {
        height: 80px;
    }
}
