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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FDFBF7;
}

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

/* Color Variables */
:root {
    --primary-green: #2D5A3D;
    --cranberry-red: #C41E3A;
    --kraft-bg: #F5F1E8;
    --kraft-border: #E8DCC0;
    --text-primary: #2C3E50;
    --text-secondary: #7F8C8D;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo {
    width: 48px;
    height: 48px;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
    text-decoration: none;
}

.brand-name a {
    color: inherit;
    text-decoration: none;
}

.brand-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.header-contact {
    font-weight: 600;
    color: var(--cranberry-red);
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--kraft-bg) 0%, #F0E6D2 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1.5rem;
}

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

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 3rem;
}

/* Product Images */
.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

/* Concept and Corporate Images */
.concept-image img,
.corporate-image img,
.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Placeholder Images */
.placeholder-image {
    background-color: var(--kraft-bg);
    border: 2px dashed var(--kraft-border);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    border-radius: 8px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
    background-color: var(--white);
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image .placeholder-image {
    height: 100%;
    border-radius: 0;
    border: none;
    margin: 0;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--cranberry-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cranberry-red);
    margin-bottom: 1.5rem;
}

.product-button {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--primary-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-button:hover {
    background-color: #234A32;
}

/* About Concept */
.about-concept {
    padding: 4rem 0;
    background-color: var(--kraft-bg);
    text-align: center;
}

.concept-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.concept-text {
    text-align: left;
}

.concept-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

/* Local Artisan Section */
.local-artisan {
    padding: 4rem 0;
    background-color: var(--white);
    text-align: center;
}

.artisan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.artisan-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--kraft-bg);
    border-radius: 12px;
    border: 1px solid var(--kraft-border);
}

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

.artisan-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.artisan-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Corporate Section */
.corporate-section {
    padding: 4rem 0;
    background-color: var(--kraft-bg);
    text-align: center;
}

.corporate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.corporate-text {
    text-align: left;
}

.corporate-features {
    list-style: none;
    margin-bottom: 2rem;
}

.corporate-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-primary);
}

.corporate-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.corporate-button {
    padding: 1rem 2rem;
    background-color: var(--cranberry-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.corporate-button:hover {
    background-color: #A01729;
}

/* Pickup Locations */
.pickup-locations {
    padding: 4rem 0;
    background-color: var(--white);
    text-align: center;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.location-card {
    background-color: var(--kraft-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--kraft-border);
    text-align: center;
}

.location-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.location-card p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Why Choose Us */
.why-choose {
    padding: 4rem 0;
    background-color: var(--kraft-bg);
    text-align: center;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

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

.reason-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.reason-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Customer Reviews */
.customer-reviews {
    padding: 4rem 0;
    background-color: var(--white);
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background-color: var(--kraft-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--kraft-border);
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.review-author {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: var(--kraft-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--text-primary);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--cranberry-red);
}

.contact-details address {
    font-style: normal;
    line-height: 1.5;
}

.contact-hours h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background-color: var(--white);
    border-radius: 6px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.footer-brand-section .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-brand-section .footer-brand {
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-brand-section .footer-description {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-brand-section .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-links-section {
    display: flex;
    gap: 2rem;
}

.footer-column h4,
.footer-info-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-info-section .footer-hours p,
.footer-info-section .footer-address address {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

.footer-info-section .footer-address {
    margin-top: 1rem;
}

.footer-info-section .footer-address address {
    font-style: normal;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .concept-content,
    .corporate-content {
        grid-template-columns: 1fr;
    }
    
    .concept-text,
    .corporate-text {
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links-section {
        justify-content: center;
        gap: 3rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .concept-image img,
    .corporate-image img {
        height: 250px;
    }
}