:root{
    --gold:     #f5c518;
    --amber:    #FF8C00;
    --brown:    #5c3d11;
    --cream:    #fffdf3;
    --cream2:   #fff8dc;
    --text:     #2e1f00;
    --text-soft:#B08040;
    --border:   #f0e0a0;
    --white:    #ffffff;  
}
*{ box-sizing: border-box; margin: 0;} html{scroll-behavior: smooth;}
body{
    font-family: 'Quicksand', sans-serif;
    background: var(--cream);
    color: var(--text);
}

/*nav*/
.nav{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(255, 253, 243, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1.5px solid var(--border);
}

.nav-inner{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand{
    display:flex;
    align-items:center;
    gap: 8px;
    font-family:'Baloo 2', cursive;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brown);
}

.nav-name {color: var(--brown);}

.nav-links {
    list-style: none;
    display:flex;
    align-items:center;
    gap: 28px;
}

.nav-links a{
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-soft);
    transition: color 0.2s ease;
}

.nav-links a:hover{color: var(--text-soft)}

.nav-btn {
    background: var(--brown) !important;
    color: var(--gold) !important;
    padding: 8px 18px;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(92,61,17,0.2);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(92,61,17,0.3) !important;
    color: var(--gold) !important;
}


/*Buttons*/
.btn-primary{
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: var(--brown);
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(230, 168, 0 , 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(230, 168, 0, 0.4);
}

.btn-ghost{
    display: inline-block;
    background: none;
    color: var(--text-soft);
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    transition: all 0.2s ease;
}

.btn-ghost:hover{
    border-color: var(--gold);
    color: var(--brown);
    background: #fff4c2;
}


/*Hero*/
.hero{
    padding: 148px 32px 80px;
    background: linear-gradient(160deg, #fff8dc 0%, #fffdf3 60%);
}

.hero-linear{
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.hero-tag{
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.hero-title{
    font-family: 'Baloo 2', cursive;
    font-size: 3rem;
    font-weight: 900;
    color: var(--brown);
    line-height: 1.15;
    margin-bottom: 20px;
}


.hero-title span { color: var(--amber); }

.hero-sub{
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-btn{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-motto{
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--border);
    letter-spacing: 0.06rem;
    text-transform: uppercase;

}

/*Hero sunflower*/
.hero-visual{
    display:flex;
    align-items: center;
    justify-content: center;
}

.hero-flower{
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slowSpin 20s linear infinite;
}

@keyframes slowSpin{
    to{transform: rotate(360deg);}
}

.hf-petals{
    position: absolute;
    inset: 0;
}

.hf-petal{
    position: absolute;
    width: 44px;
    height: 72px;
    background: var(--gold);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    opacity: 0.85;
}


.hf-petal:nth-child(1){ transform: translateX(-50%) rotate(0deg) translateY(-90px); }
.hf-petal:nth-child(2){ transform: translateX(-50%) rotate(45deg) translateY(-90px); }
.hf-petal:nth-child(3){ transform: translateX(-50%) rotate(90deg) translateY(-90px); }
.hf-petal:nth-child(4){ transform: translateX(-50%) rotate(135deg) translateY(-90px); }
.hf-petal:nth-child(5){ transform: translateX(-50%) rotate(180deg) translateY(-90px); }
.hf-petal:nth-child(6){ transform: translateX(-50%) rotate(225deg) translateY(-90px); }
.hf-petal:nth-child(7){ transform: translateX(-50%) rotate(270deg) translateY(-90px); }
.hf-petal:nth-child(8){ transform: translateX(-50%) rotate(315deg) translateY(-90px); }

.hf-center {
    font-size: 5rem;
    font-size: 5rem;
    z-index: 2;
    position: relative;
    animation: counterSpin 20s linear infinite;
}

@keyframes counterSpin{
    to{transform: rotate(-360deg);}
}

/*Section Shared*/
.section-inner{
    max-width: 1100px;
    margin: 0 auto;
    padding: 88px 32px;
}

.section-tag{
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.section-title{
    font-family: 'Baloo 2', cursive;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-sub{
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-soft);
    margin-bottom: 48px;
}

/*Features*/

.features {
    background:  var(--white);
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
}

.features .section-inner {text-align: center;}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
}

.feature.card{
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature.card:hover{
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(180,120,0,0.1);
}

.feature-icon{
    font-size: 2rem;
    margin-bottom: 14px;
}

.feature-card h3{
    font-family:'Baloo 2', cursive;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 8px;
}

.feature-card p{
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-soft);
    line-height: 1.5;
}

/*About*/
.about { background: var(--cream2);}

.about-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-animals{
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1.5px solid var(--border);
    padding: 24px 28px;
    border-radius: 20px;
}

.ab-animal{
    font-size: 2.6rem;
    animation: float 3s ease-in-out infinite;
}


.ab-animal:nth-child(1){ animation-delay: 0s; }
.ab-animal:nth-child(3){ animation-delay: 0.3s; }
.ab-animal:nth-child(5){ animation-delay: 0.6s; }
.ab-animal:nth-child(7){ animation-delay: 0.9s; }

@keyframes float{
    0%, 100%{ transform: translateY(0); }
    50%{ transform: translateY(-8px); }
}

.ab-arrow{
    font-size: 2rem;
    color: var(--border);
    font-weight: 700;
}

.about-visual-label{
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.about-text p{
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-soft);
    line-height: 1.8;
}

.about-text p{
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-soft);
    line-height: 1.9;
}

.about-text strong { color: var(--brown);}

/*Footer*/
.footer{
    background: var(--brown);
    padding: 24px 32px;
}

.footer-inner{
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.footer-brand{
    display:flex;
    align-items:center;
    gap: 8px;
    font-family:'Baloo 2', cursive;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
}

.footer-motto{
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-soft);
    letter-spacing: 0.06rem;
    text-transform: uppercase;
    letter-spacing: 0.08rem;

}

.footer-links{
    display:flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a{
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,214,165,0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover{color: var(--gold);}

.footer-copy{
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,214,165,0.4);
}

/*Quote syle*/
.about-quote{
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--amber);
    font-style: italic;
    border-left: 4px solid var(--gold);
    padding: 10px 16px;
    background: var(--white);
    border-radius: 0 10px 10px 0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-closing{
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown);
    line-height: 1.7;
}
