/* Template 87 - Sunflower Garden / Bright Botanical */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@400;500;600;700&display=swap');

:root {
    --sunflower: #f4c430;
    --petal: #ffdb4d;
    --seed: #3d2914;
    --stem: #4a7c23;
    --leaf: #6b9b37;
    --sky: #87ceeb;
    --cloud: #f8f9fa;
    --soil: #5c4033;
    --cream: #fffef5;
    --warmth: #ff9f1c;
}

* {
    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.7;
    color: var(--seed);
    background: var(--cream);
    font-weight: 400;
    overflow-x: hidden;
}

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

/* Header */
.site-header {
    background: linear-gradient(180deg, var(--sky) 0%, var(--cloud) 100%);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--sunflower);
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M0,20 Q10,0 20,20 T40,20 T60,20 T80,20 T100,20' fill='%23fffef5'/%3E%3C/svg%3E") repeat-x;
    background-size: 100px 20px;
}

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

.site-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--seed);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.site-logo a::before {
    content: '🌻';
    font-size: 2rem;
}

.site-logo a:hover {
    color: var(--stem);
    transform: scale(1.02);
}

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

.site-nav a {
    color: var(--seed);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.5);
}

.site-nav a:hover {
    background: var(--sunflower);
    color: var(--seed);
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.4);
}

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

.section.head::before {
    content: '✿';
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 3rem;
    opacity: 0.3;
    color: var(--sunflower);
    animation: sway 4s ease-in-out infinite;
}

.section.head::after {
    content: '✿';
    position: absolute;
    top: 30%;
    right: 15%;
    font-size: 2rem;
    opacity: 0.3;
    color: var(--leaf);
    animation: sway 5s ease-in-out infinite reverse;
}

@keyframes sway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.section.head h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--seed);
    margin-bottom: 1.5rem;
}



.section.head p {
    font-size: 1.2rem;
    color: var(--soil);
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 3px dashed var(--leaf);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

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

.section header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--seed);
    position: relative;
    display: inline-block;
}

.section header h2::after {
    content: '🌻';
    position: absolute;
    right: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
}

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

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

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--sunflower) 0px,
        var(--sunflower) 20px,
        var(--leaf) 20px,
        var(--leaf) 40px
    );
}

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

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

.footer-tagline {
    color: var(--petal);
    line-height: 1.8;
}

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

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '❀';
    color: var(--sunflower);
    transition: transform 0.3s ease;
}

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

.footer-links a:hover::before {
    transform: rotate(360deg);
}

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

.copyright a {
    color: var(--petal);
    font-size: 0.9rem;
}

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

.fade-in {
    opacity: 0;
    animation: floatIn 0.6s ease forwards;
}

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: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--stem);
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;
}
