/* Template 67 - Watercolor Wash / Artistic Soft */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Karla:wght@300;400;500;600&display=swap');

:root {
    --watercolor-1: #e8d5c4;
    --watercolor-2: #c9b8a8;
    --watercolor-3: #a5c4d4;
    --watercolor-4: #d4c5e8;
    --watercolor-5: #c4e8d5;
    --watercolor-6: #e8c4c4;
    
    --bg-canvas: #faf8f5;
    --bg-paper: #f5f2ed;
    
    --text-ink: #3d3d3d;
    --text-secondary: #6b6b6b;
    --text-muted: #9a9a9a;
    
    --accent-brush: #b8860b;
}

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

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

body {
    font-family: 'Karla', sans-serif;
    line-height: 1.8;
    color: var(--text-ink);
    background: var(--bg-canvas);
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 20%, var(--watercolor-3) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, var(--watercolor-4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, var(--watercolor-5) 0%, transparent 60%);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

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

/* Header - Artistic */
.site-header {
    background: transparent;
    padding: 2rem 0;
    position: relative;
    z-index: 1000;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--watercolor-3) 20%, 
        var(--watercolor-4) 50%, 
        var(--watercolor-6) 80%, 
        transparent 100%);
    border-radius: 50%;
}

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

.site-logo a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-ink);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
}

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

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

.site-nav a {
    font-family: 'Karla', sans-serif;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--watercolor-3), var(--watercolor-4));
    transition: width 0.4s ease;
    border-radius: 1px;
}

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

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

/* Hero Section */
.section.head {
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.section.head::before {
    content: '\2022';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--watercolor-4);
}

.section.head h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-ink);
    line-height: 1.2;
}

.section.head p {
    font-family: 'Karla', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 2;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, 
        rgba(165, 196, 212, 0.1) 0%, 
        rgba(212, 197, 232, 0.1) 50%,
        rgba(196, 232, 213, 0.1) 100%);
    border-radius: 2px;
    position: relative;
}

.section.head p::before,
.section.head p::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--watercolor-2);
    border-style: solid;
}

.section.head p::before {
    top: 10px;
    left: 10px;
    border-width: 1px 0 0 1px;
}

.section.head p::after {
    bottom: 10px;
    right: 10px;
    border-width: 0 1px 1px 0;
}

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

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

.section header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-ink);
}

.section header p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--bg-paper);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--watercolor-3), 
        var(--watercolor-4), 
        var(--watercolor-5), 
        var(--watercolor-6));
    border-radius: 2px;
}

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

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

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--watercolor-2);
}

.copyright a {
    font-family: 'Karla', sans-serif;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations */
@keyframes brushStroke {
    0% { width: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { width: 100%; opacity: 1; }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: softFadeIn 1s ease forwards;
}

@keyframes softFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-ink);
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;
}
