/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
.header {
    background: linear-gradient(135deg, #f5f5dc 0%, #ffffff 100%);
    padding: 20px 0;
    border-bottom: 1px solid #e5e5dc;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    flex-shrink: 0;
}

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

.brand-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 500;
    color: #4338ca;
    margin: 0;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.2;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 12px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-description {
    font-size: 15px;
    margin-bottom: 30px;
    opacity: 0.8;
    max-width: 500px;
}

.hero-image {
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
}

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

/* Image Styles */
.course-img, .rental-img, .product-img, .masterclass-img, .about-img, .contact-img, .photo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.product-img {
    height: 180px;
}

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

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

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

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
    color: #4338ca;
}

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

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #dc2626;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #4338ca;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-4px);
}

.course-image {
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

.course-content {
    padding: 24px;
}

.course-content h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #4338ca;
}

.course-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.course-price {
    font-size: 18px;
    font-weight: 500;
    color: #dc2626;
}

/* Rental Section */
.rental {
    background-color: #fafafa;
}

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

.rental-features {
    list-style: none;
    margin-top: 30px;
}

.rental-features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.rental-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 500;
}

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

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

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    height: 180px;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #4338ca;
}

.product-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-price {
    font-size: 16px;
    font-weight: 500;
    color: #dc2626;
    display: block;
    margin-bottom: 16px;
}

.product-btn {
    display: inline-block;
    background-color: #4338ca;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.product-btn:hover {
    background-color: #3730a3;
}

/* Masterclasses Section */
.masterclasses {
    background-color: #fafafa;
}

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

.masterclass-info h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #4338ca;
}

.masterclass-features {
    list-style: none;
    margin-top: 20px;
}

.masterclass-features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.masterclass-features li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 500;
}

/* About Preview Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    background-color: #fafafa;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: """;
    font-size: 60px;
    color: #4338ca;
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
    font-family: serif;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 20px;
    line-height: 1.6;
}

.testimonial-author {
    text-align: right;
    font-weight: 500;
    color: #666;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    padding: 16px 0;
    border-bottom: 1px solid #e5e5dc;
}

.contact-item strong {
    display: inline-block;
    width: 80px;
    color: #4338ca;
    font-weight: 500;
}

.contact-item a {
    color: #dc2626;
    text-decoration: none;
}

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

/* Footer */
.footer {
    background-color: #2d3748;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    min-width: 0;
}

.footer-section h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: #f5f5dc;
}

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

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

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f5f5dc;
}

.footer-section a {
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-img {
        height: 200px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid,
    .courses-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .rental-content,
    .masterclass-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 24px;
    }

    .hero-img {
        height: 180px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .service-card,
    .testimonial-card {
        padding: 24px 20px;
    }

    .footer-section:first-child {
        grid-column: 1;
    }
}