/* Template 63 - Honey Bee / Sweet Natural */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@400;500;600;700&display=swap');

:root {
    --honey-gold: #f4a623;
    --honey-amber: #d4871c;
    --honey-light: #fff3d6;
    --honey-cream: #fffbf0;
    --bee-black: #1a1a1a;
    --bee-stripe: #2a2a2a;
    --comb-beige: #f5e6c8;
    --pollen-yellow: #ffe066;
    --leaf-green: #7cb342;
    --warm-brown: #8b5a2b;
}

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

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

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

/* Honeycomb pattern background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='%23f4a623' fill-opacity='0.08' d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' /%3E%3Cpath fill='none' stroke='%23f4a623' stroke-opacity='0.05' stroke-width='1' d='M28 0L28 66L0 50M56 50L28 66' /%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

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

/* Header - Honey Drip Style */
.site-header {
    background: var(--honey-gold);
    padding: 1.5rem 0 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(244, 166, 35, 0.3);
}

.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%3Cellipse cx='20' cy='0' rx='15' ry='20' fill='%23f4a623'/%3E%3Cellipse cx='50' cy='0' rx='12' ry='15' fill='%23f4a623'/%3E%3Cellipse cx='80' cy='0' rx='18' ry='20' fill='%23f4a623'/%3E%3C/svg%3E") repeat-x;
    background-size: 100px 20px;
    animation: dripMove 8s linear infinite;
}

@keyframes dripMove {
    0% { background-position-x: 0; }
    100% { background-position-x: 100px; }
}

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

.site-logo a {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bee-black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.site-logo a::before {
    content: '🐝';
    font-size: 1.5rem;
    animation: beeWiggle 2s ease-in-out infinite;
}

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

.site-logo a:hover {
    transform: scale(1.05);
}

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

.site-nav a {
    color: var(--bee-black);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    display: block;
    transition: all 0.3s ease;
    background: var(--honey-light);
    border-radius: 30px;
    border: 2px solid transparent;
}

.site-nav a:hover {
    background: var(--bee-black);
    color: var(--honey-gold);
    transform: translateY(-2px);
}

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

.section.head h1 {
    font-family: 'Fraunces', serif;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--bee-black);
}



.section.head p {
    font-size: 1.15rem;
    color: var(--bee-stripe);
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--honey-light);
    border-radius: 20px;
    border: 3px solid var(--honey-gold);
    position: relative;
}

.section.head p::before,
.section.head p::after {
    content: '✿';
    position: absolute;
    top: -15px;
    font-size: 1.5rem;
    color: var(--honey-amber);
}

.section.head p::before { left: 20px; }
.section.head p::after { right: 20px; }

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

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

.section header h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--bee-black);
    position: relative;
    display: inline-block;
}

.section header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--honey-gold), var(--pollen-yellow));
    margin: 1rem auto 0;
    border-radius: 2px;
}

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

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

/* Footer */
.footer {
    background: var(--bee-black);
    color: var(--honey-light);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: repeating-linear-gradient(
        90deg,
        var(--honey-gold) 0px,
        var(--honey-gold) 20px,
        var(--bee-black) 20px,
        var(--bee-black) 40px
    );
}

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

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

.footer-tagline {
    color: var(--comb-beige);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-links a {
    color: var(--honey-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid var(--honey-gold);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: var(--honey-gold);
    color: var(--bee-black);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 166, 35, 0.3);
}

.footer-bottom::before {
    content: '🍯';
    display: block;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

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

.fade-in {
    opacity: 0;
    animation: sweetFadeIn 0.7s 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;
}
