/* Template 80 - Soft Peach / Warm Feminine */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Nunito:wght@400;500;600&display=swap');

:root {
    --peach-light: #fff5f0;
    --peach: #ffb4a2;
    --peach-deep: #e07a5f;
    --blush: #f4acb7;
    --rose: #d4a5a5;
    --cream: #fffaf5;
    --charcoal: #3d405b;
    --sage: #81b29a;
    --gold: #dda15e;
}

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

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

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

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

/* Header - Elegant Soft */
.site-header {
    background: var(--cream);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--peach-light);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    font-style: italic;
    transition: all 0.3s ease;
}

.site-logo a::before {
    content: '✿';
    margin-right: 0.5rem;
    color: var(--peach-deep);
}

.site-logo a:hover {
    color: var(--peach-deep);
}

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

.site-nav a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--peach), var(--blush));
    transition: width 0.3s ease;
}

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

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

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

.section.head::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--peach) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: 50%;
    animation: softPulse 6s ease-in-out infinite;
}

@keyframes softPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

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

.section.head p {
    font-size: 1.1rem;
    color: var(--charcoal);
    max-width: 650px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--cream);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(255, 180, 162, 0.15);
    position: relative;
}

.section.head p::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--peach);
    line-height: 1;
}

/* 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.75rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-weight: 400;
    font-style: italic;
}

.section header h2::before,
.section header h2::after {
    content: '~';
    margin: 0 1rem;
    color: var(--peach);
}

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

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

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--peach), var(--blush), var(--sage), var(--gold));
}

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

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

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1rem;
}

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

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

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

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

.footer-bottom::before {
    content: '✿';
    display: block;
    color: var(--peach);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.copyright a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

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

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

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;
    color: var(--charcoal);
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;
    font-style: italic;
}
