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

:root {
    --pine-green: #2D5016;
    --snowy-white: #FEFEFE;
    --cranberry-red: #DC143C;
    --brushed-gold: #B8860B;
    --warm-gray: #F5F5F0;
    --light-gray: #E5E5E5;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--snowy-white);
}

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

/* Header Styles */
.header {
    background-color: var(--snowy-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--pine-green);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--warm-gray) 0%, var(--snowy-white) 100%);
    padding: 80px 0;
}

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

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

.centered {
    text-align: center;
}

.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--pine-green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 0;
}

.hero-image {
    position: relative;
}

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

.about-main-image,
.collection-img,
.product-img,
.seasonal-img,
.wholesale-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.about-main-image {
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.collection-img,
.product-img {
    height: 200px;
}

.seasonal-img,
.wholesale-img {
    height: 300px;
    border-radius: 12px;
}

.collection-img:hover,
.product-img:hover {
    transform: scale(1.05);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--pine-green);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

/* About Section */
.about {
    background-color: var(--warm-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Featured Collections */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.collection-item {
    background-color: var(--snowy-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
}

.collection-image {
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.collection-item h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--pine-green);
    margin: 0 0 10px 0;
}

.collection-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Products Section */
.products {
    background-color: var(--warm-gray);
}

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

.product-item {
    background-color: var(--snowy-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    text-align: center;
}

.product-image {
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-item h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--pine-green);
    margin: 0 0 10px 0;
}

.product-item p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--cranberry-red);
    margin-bottom: 15px;
}

.product-button {
    background-color: var(--pine-green);
    color: var(--snowy-white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 120px;
}

.product-button:hover {
    background-color: #1a330a;
    transform: translateY(-1px);
}

.product-button.special {
    background-color: var(--brushed-gold);
    color: var(--pine-green);
}

.product-button.special:hover {
    background-color: #D4AF37;
}

.product-button.premium {
    background-color: var(--cranberry-red);
    color: var(--snowy-white);
}

.product-button.premium:hover {
    background-color: #B91C3C;
}

.product-button.bundle {
    background: linear-gradient(135deg, var(--pine-green) 0%, var(--brushed-gold) 100%);
    color: var(--snowy-white);
}

.product-button.bundle:hover {
    background: linear-gradient(135deg, #1a330a 0%, #D4AF37 100%);
}

/* Personalization Section */
.personalization-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.option-item {
    text-align: center;
    background-color: var(--snowy-white);
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.option-icon svg {
    width: 100%;
    height: 100%;
}

.option-item h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--pine-green);
    margin-bottom: 10px;
}

.option-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Seasonal Section */
.seasonal {
    background-color: var(--warm-gray);
}

.seasonal-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.seasonal-text h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--pine-green);
    margin-bottom: 20px;
}

.seasonal-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.seasonal-text ul {
    list-style: none;
    padding-left: 0;
}

.seasonal-text li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-light);
}

.seasonal-text li::before {
    content: "•";
    color: var(--cranberry-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Craftsmanship Section */
.craft-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.craft-item {
    background-color: var(--snowy-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--brushed-gold);
}

.craft-item h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--pine-green);
    margin-bottom: 15px;
}

.craft-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Wholesale Section */
.wholesale {
    background-color: var(--warm-gray);
}

.wholesale-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.wholesale-services {
    display: grid;
    gap: 30px;
}

.service-item {
    background-color: var(--snowy-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--pine-green);
    margin-bottom: 10px;
}

.service-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Contacts Section */
.contacts {
    background-color: var(--snowy-white);
}

.contacts-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--warm-gray);
    border-radius: 12px;
    padding: 25px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-details h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--pine-green);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-dark);
    font-size: 14px;
}

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

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

/* Footer */
.footer {
    background-color: var(--pine-green);
    color: var(--snowy-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    max-width: 400px;
}

.footer-brand .brand-name {
    color: var(--snowy-white);
    font-size: 20px;
}

.footer-brand p {
    margin-top: 15px;
    color: #CCE5B4;
    font-size: 14px;
    line-height: 1.6;
}

.footer-info {
    flex: 1;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-column h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--brushed-gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #CCE5B4;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--snowy-white);
}

.footer-bottom {
    border-top: 1px solid #4A6B2A;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #CCE5B4;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-content,
    .seasonal-content,
    .wholesale-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .collections-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .hero-main-image {
        height: 250px;
    }
}