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

body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Yu Gothic', '游ゴシック', sans-serif;
    line-height: 1.6;
    color: #2C1810;
    background-color: #FFFEF7;
}

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

/* Header Styles */
.header {
    background-color: #FFFEF7;
    border-bottom: 2px solid #C41E3A;
    padding: 20px 0;
}

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

.logo {
    filter: drop-shadow(0 2px 4px rgba(196, 30, 58, 0.2));
}

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

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #C41E3A;
    margin: 0;
    letter-spacing: -0.02em;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #8B0000;
    margin: 0;
    font-weight: 400;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF5E6 100%);
    padding: 80px 0;
    text-align: center;
}

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

.hero-title {
    font-size: 3rem;
    color: #C41E3A;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #5D4037;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-image {
    margin-top: 30px;
}

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

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

.centered-section {
    text-align: center;
}

.centered-section .container > * {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    color: #C41E3A;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #FFD700;
    margin: 20px auto;
}

/* About Section */
.about {
    background-color: #FFF8F0;
}

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

.about-text p {
    font-size: 1.1rem;
    color: #5D4037;
    line-height: 1.8;
}

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

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

.product-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.1);
    text-align: center;
    border: 1px solid #F0E6E6;
}

.product-icon {
    margin-bottom: 20px;
}

.product-title {
    font-size: 1.4rem;
    color: #C41E3A;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-description {
    color: #5D4037;
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #C41E3A;
    margin-bottom: 20px;
}

.product-btn {
    background-color: #C41E3A;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.3s ease;
}

.product-btn:hover {
    background-color: #8B0000;
}

/* Features Section */
.features {
    background-color: #FFF8F0;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #C41E3A;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: #5D4037;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #FFD700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    color: #5D4037;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.customer-name {
    color: #C41E3A;
    font-weight: 600;
    text-align: right;
}

/* Services Section */
.services {
    background-color: #FFF8F0;
}

.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-item {
    padding: 20px;
}

.service-item h3 {
    font-size: 1.3rem;
    color: #C41E3A;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    color: #5D4037;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background-color: #FFF8F0;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #C41E3A;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    color: #5D4037;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #2C1810;
    color: #F5F5DC;
    padding: 40px 0 20px;
}

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

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

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFD700;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    justify-content: center;
}

.footer-links a {
    color: #F5F5DC;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 0.85rem;
    color: #B8860B;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-image img {
        height: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        justify-content: center;
        gap: 15px;
    }
    
    .brand-name {
        font-size: 1.4rem;
    }
    
    .container {
        padding: 0 15px;
    }
}