@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cherry-red: #e53935;
    --lime-green: #7cb342;
    --orange-zest: #fb8c00;
    --grape-purple: #8e24aa;
    --banana-yellow: #fdd835;
    --fresh-white: #fafafa;
    --forest-bg: #1b5e20;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(180deg, var(--forest-bg) 0%, #0d3d0f 100%);
    color: var(--fresh-white);
    line-height: 1.75;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Pacifico', cursive;
    color: var(--banana-yellow);
}

a {
    color: var(--banana-yellow);
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: var(--orange-zest);
}

.fruit-header {
    background: linear-gradient(90deg, var(--cherry-red) 0%, var(--grape-purple) 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fruit-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fruit-brand svg {
    width: 48px;
    height: 48px;
}

.fruit-brand span {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: var(--fresh-white);
}

.fruit-nav {
    display: flex;
    gap: 2rem;
}

.fruit-nav a {
    color: var(--fresh-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.fruit-nav a:hover {
    color: var(--banana-yellow);
}

.juice-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.juice-toggle div {
    width: 28px;
    height: 3px;
    background: var(--fresh-white);
    margin: 6px 0;
    border-radius: 3px;
}

.basket-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--grape-purple);
    z-index: 1001;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.basket-menu.open {
    display: flex;
}

.basket-menu a {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: var(--fresh-white);
}

.basket-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--banana-yellow);
}

.main-body {
    padding-top: 85px;
}

.orchard-hero {
    background: radial-gradient(ellipse at center, var(--lime-green) 0%, var(--forest-bg) 70%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
}

.orchard-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 0 var(--cherry-red);
}

.orchard-hero p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    font-weight: 500;
}

.harvest-btn {
    display: inline-block;
    background: var(--banana-yellow);
    color: var(--forest-bg);
    padding: 1rem 3rem;
    font-family: 'Pacifico', cursive;
    font-size: 1.3rem;
    border-radius: 50px;
    box-shadow: 0 5px 0 #c6a700;
    transition: all 0.2s;
}

.harvest-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #c6a700;
    color: var(--forest-bg);
}

.fruit-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    font-weight: 600;
}

.game-grove {
    padding: 4rem 2rem;
    background: var(--forest-bg);
}

.game-grove h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.game-basket {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--lime-green) 0%, var(--forest-bg) 100%);
    border: 4px solid var(--banana-yellow);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.game-basket iframe {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
}

.juicy-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--forest-bg) 0%, #0d3d0f 100%);
}

.juice-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.juice-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.juice-card:hover {
    border-color: var(--banana-yellow);
    transform: translateY(-8px);
}

.juice-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.juice-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.juice-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.story-section {
    padding: 5rem 2rem;
    background: var(--forest-bg);
}

.story-inner {
    max-width: 900px;
    margin: 0 auto;
}

.story-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-section p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.legal-grove {
    padding: 4rem 2rem;
    background: var(--forest-bg);
}

.legal-inner {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 20px;
}

.legal-grove h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-grove h2 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--orange-zest);
}

.legal-grove p {
    margin-bottom: 1rem;
    font-weight: 500;
}

.legal-grove ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-grove li {
    margin-bottom: 0.6rem;
}

.garden-footer {
    background: var(--grape-purple);
    padding: 3rem 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    margin-bottom: 2rem;
}

.footer-nav a {
    margin: 0 1rem;
    color: var(--fresh-white);
    font-weight: 600;
}

.help-area {
    margin-bottom: 1.5rem;
}

.help-area p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.help-area a {
    margin: 0 0.75rem;
    font-size: 0.9rem;
}

.copy-text {
    font-size: 0.8rem;
    opacity: 0.6;
}

.ripe-check {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 32, 0.97);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ripe-check.picked {
    display: none;
}

.check-card {
    background: var(--fresh-white);
    border-radius: 20px;
    padding: 3rem;
    max-width: 480px;
    margin: 1rem;
    text-align: center;
    color: var(--forest-bg);
}

.check-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--cherry-red);
}

.check-card p {
    margin-bottom: 1.5rem;
}

.check-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.check-btn {
    padding: 1rem 2rem;
    font-family: 'Pacifico', cursive;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
}

.check-btn.yes {
    background: var(--lime-green);
    color: var(--fresh-white);
}

.check-btn.no {
    background: #e0e0e0;
    color: var(--forest-bg);
}

.check-btn:hover {
    transform: scale(1.05);
}

.unripe-msg {
    display: none;
    text-align: center;
    color: var(--fresh-white);
}

.unripe-msg h2 {
    color: var(--cherry-red);
}

@media (max-width: 768px) {
    .fruit-nav {
        display: none;
    }
    
    .juice-toggle {
        display: block;
    }
    
    .orchard-hero h1 {
        font-size: 2.3rem;
    }
    
    .game-basket iframe {
        height: 400px;
    }
    
    .check-btns {
        flex-direction: column;
    }
    
    .legal-inner {
        padding: 2rem;
    }
}
