/* Template 91 - Cottage Core / Rustic Farmhouse */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
    --linen: #faf3e8;
    --cream: #fff8f0;
    --wheat: #e8d5b7;
    --honey: #d4a373;
    --berry: #9c4a58;
    --sage: #87a878;
    --forest: #4a5d3f;
    --bark: #5c4833;
    --charcoal: #3d3d3d;
    --rose: #c9a9a6;
    --lavender: #b4a7c7;
}

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

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

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

/* Subtle texture background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='1' fill='%23d4a373' opacity='0.1'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

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

/* Header */
.site-header {
    background: var(--cream);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px double var(--wheat);
}

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

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

.site-logo a::before {
    content: '🌿';
    font-size: 1.5rem;
}

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

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

.site-nav a {
    color: var(--bark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

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

.site-nav a:hover {
    color: var(--forest);
    background: rgba(135, 168, 120, 0.1);
}

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

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

.section.head::before {
    content: '~ ❀ ~';
    display: block;
    font-size: 1.5rem;
    color: var(--rose);
    margin-bottom: 2rem;
    letter-spacing: 1rem;
}

.section.head h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--bark);
    margin-bottom: 1.5rem;
    font-style: italic;
}


.section.head p {
    font-size: 1.15rem;
    color: var(--charcoal);
    max-width: 750px;
    margin: 0 auto;
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--wheat);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    position: relative;
}

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

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

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

.section header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bark);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.section header h2::before {
    content: '✿';
    color: var(--sage);
    margin-right: 1rem;
    font-style: normal;
}

.section header h2::after {
    content: '✿';
    color: var(--sage);
    margin-left: 1rem;
    font-style: normal;
}

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

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

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--sage) 0px,
        var(--sage) 15px,
        var(--rose) 15px,
        var(--rose) 30px,
        var(--lavender) 30px,
        var(--lavender) 45px,
        var(--honey) 45px,
        var(--honey) 60px
    );
}

.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(--wheat);
    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(--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(--sage);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

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

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

.footer-bottom::before {
    content: '~ Made with love ~';
    display: block;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 0.85rem;
    color: var(--rose);
    margin-bottom: 0.75rem;
}

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

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

.fade-in {
    opacity: 0;
    animation: floatIn 0.5s 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: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    color: var(--forest);
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;
    font-style: italic;
}
