/* Template 33 - Lavender Fields / Soft French Provence */
@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Nunito+Sans:wght@300;400;500;600&display=swap');

:root {
    --lavender: #9B7EBD;
    --soft-purple: #D4BFDB;
    --french-blue: #6B8FB5;
    --sage: #9CAF88;
    --cream: #FBF8F5;
    --parchment: #F5F0EA;
    --charcoal: #3D3D3D;
    --dusty-rose: #D4A5A5;
    --honey: #E8C872;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.75;
    color: var(--charcoal);
    background: var(--cream);
    font-weight: 400;
    overflow-x: hidden;
}

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

/* Header - Romantic French Style */
.site-header {
    background: var(--cream);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(155, 126, 189, 0.2);
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.site-logo a {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 2.25rem;
    color: var(--lavender);
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.site-logo a:hover {
    color: var(--french-blue);
    letter-spacing: 0.2em;
}

.site-nav {
    width: 100%;
    border-top: 1px solid rgba(155, 126, 189, 0.15);
    border-bottom: 1px solid rgba(155, 126, 189, 0.15);
    padding: 0.75rem 0;
}

.site-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
}

.site-nav a {
    color: var(--charcoal);
    text-decoration: none;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-style: italic;
    transition: all 0.3s ease;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--lavender);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.site-nav a:hover {
    color: var(--lavender);
}

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

/* Hero Section */
.section.head {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--parchment) 0%, var(--cream) 100%);
}

.section.head::before {
    content: '❧';
    display: block;
    font-size: 2.5rem;
    color: var(--soft-purple);
    margin-bottom: 2rem;
    opacity: 0.7;
}

.section.head h1 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section.head p {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.8;
    max-width: 650px;
    margin: 0 auto;
    font-style: italic;
}

.section.head p::before,
.section.head p::after {
    content: ' — ';
    color: var(--lavender);
}

/* Section Styling */
.section {
    padding: 5rem 0;
}

.section header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section header h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section header h2::before,
.section header h2::after {
    content: '✿';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--soft-purple);
    font-size: 1rem;
    opacity: 0.6;
}

.section header h2::before {
    left: -2rem;
}

.section header h2::after {
    right: -2rem;
}

.section header p {
    font-size: 1.05rem;
    color: var(--charcoal);
    opacity: 0.7;
    max-width: 550px;
    margin: 0 auto;
    font-style: italic;
}

/* Footer - Soft Romantic Style */
.footer {
    background: var(--parchment);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lavender), transparent);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.footer-about {
    flex: 1;
    max-width: 400px;
}

.footer-tagline {
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.8;
    font-style: italic;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-style: italic;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--lavender);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(155, 126, 189, 0.2);
}

.copyright,
.copyright a {
    color: var(--charcoal);
    opacity: 0.6;
    font-size: 0.85rem;
    font-style: italic;
}

/* Animations */
@keyframes gentleFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: gentleFade 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.15s; }
.fade-in:nth-child(2) { animation-delay: 0.3s; }
.fade-in:nth-child(3) { animation-delay: 0.45s; }

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--charcoal);
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;
}
