/* CSS Variables */
:root {
    --matcha-green: #5A7A3A;
    --light-matcha: #7A9A5A;
    --sakura-blush: #E8B4CB;
    --soft-sakura: #F5E6ED;
    --rice-paper-white: #FEFEFE;
    --warm-white: #F8F4F0;
    --charcoal-ink: #2C2C2C;
    --light-gray: #F5F5F5;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--charcoal-ink);
    background-color: var(--rice-paper-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--charcoal-ink);
}

h2 {
    font-size: 2rem;
    color: var(--matcha-green);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--matcha-green);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Header */
.header {
    background-color: var(--matcha-green);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-name {
    color: var(--warm-white);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Buttons */
.cta-button, .product-button, .tier-button {
    background-color: var(--matcha-green);
    color: var(--warm-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover, .product-button:hover, .tier-button:hover {
    background-color: var(--light-matcha);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 122, 58, 0.3);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--soft-sakura) 100%);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.hero h1 {
    font-size: 3rem;
    color: var(--charcoal-ink);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    color: var(--charcoal-ink);
    margin-bottom: 2rem;
}

/* Introduction */
.introduction {
    padding: 4rem 0;
    background-color: var(--warm-white);
    text-align: center;
}

.introduction h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.intro-feature {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.intro-feature h3 {
    color: var(--matcha-green);
    margin-bottom: 1rem;
}

/* Menu Highlights */
.menu-highlights {
    padding: 4rem 0;
    text-align: center;
}

.menu-highlights h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--warm-white);
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.menu-image svg {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.menu-item h3 {
    color: var(--matcha-green);
    margin-bottom: 0.5rem;
}

.menu-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Bento Subscription */
.bento-subscription {
    padding: 4rem 0;
    background-color: var(--warm-white);
    text-align: center;
}

.bento-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.bento-info {
    flex: 1;
    text-align: left;
}

.bento-info h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.bento-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.bento-info li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.bento-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--matcha-green);
    font-weight: bold;
}

.bento-image {
    flex: 1;
}

.bento-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Products Section */
.products {
    padding: 4rem 0;
    text-align: center;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--matcha-green);
    margin-bottom: 0.5rem;
}

.product-item h3 {
    color: var(--matcha-green);
    margin-bottom: 0.5rem;
}

.product-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Farm Partnerships */
.farm-partnerships {
    padding: 4rem 0;
    background-color: var(--warm-white);
    text-align: center;
}

.farm-partnerships h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: var(--charcoal-ink);
}

.farms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.farm-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.farm-profile h3 {
    color: var(--matcha-green);
    margin-bottom: 0.5rem;
}

.farm-profile {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Events */
.events {
    padding: 4rem 0;
    text-align: center;
}

.events h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.events-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.events-info {
    flex: 1;
    text-align: left;
}

.events-info h3 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.event-types {
    margin-bottom: 2rem;
}

.event-type {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--soft-sakura);
    border-radius: 8px;
}

.event-type h4 {
    color: var(--matcha-green);
    margin-bottom: 0.5rem;
}

.events-image {
    flex: 1;
}

.events-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Membership */
.membership {
    padding: 4rem 0;
    background-color: var(--warm-white);
    text-align: center;
}

.membership h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.membership-tier {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.membership-tier.featured {
    border: 2px solid var(--matcha-green);
    transform: scale(1.05);
}

.membership-tier h3 {
    color: var(--matcha-green);
    margin-bottom: 1rem;
}

.membership-tier .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal-ink);
    margin-bottom: 1rem;
}

.membership-tier ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.membership-tier li {
    margin-bottom: 0.5rem;
    color: var(--charcoal-ink);
}

/* Contacts */
.contacts {
    padding: 4rem 0;
    text-align: center;
}

.contacts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    color: var(--matcha-green);
    margin-bottom: 1rem;
}

.contact-item a {
    color: var(--matcha-green);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.hours {
    text-align: center;
    padding: 2rem;
    background-color: var(--soft-sakura);
    border-radius: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.hours h3 {
    color: var(--matcha-green);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--charcoal-ink);
    color: var(--warm-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--warm-white);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-section h4 {
    color: var(--sakura-blush);
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-content {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .farms-grid {
        grid-template-columns: 1fr;
    }
    
    .events-content {
        flex-direction: column;
    }
    
    .membership-tiers {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: none;
    }
}