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

body {
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #FFF8F0;
}

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

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

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

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

.brand-name {
    font-size: 2rem;
    font-weight: bold;
    color: #C53030;
    margin: 0;
}

.brand-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-left: 10px;
}

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

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

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    margin: 30px auto 0;
    max-width: 600px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    max-height: 400px;
    object-fit: cover;
}

/* About Introduction */
.about-intro {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

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

.about-intro h3 {
    font-size: 2rem;
    color: #C53030;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #FFF8F0;
    text-align: center;
}

.services h3 {
    font-size: 2.2rem;
    text-align: center;
    color: #C53030;
    margin-bottom: 60px;
}

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

.service-item {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-item h4 {
    font-size: 1.3rem;
    color: #C53030;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.products h3 {
    font-size: 2.2rem;
    text-align: center;
    color: #C53030;
    margin-bottom: 60px;
}

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

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

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.product-item h4 {
    font-size: 1.4rem;
    color: #C53030;
    margin: 20px 20px 10px;
}

.product-item p {
    margin: 0 20px 15px;
    color: #666;
    line-height: 1.6;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #C53030;
    margin: 0 20px 20px;
}

.cta-button {
    background-color: #C53030;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    margin: 0 20px 20px;
    width: calc(100% - 40px);
    font-family: inherit;
}

.phone-btn {
    background-color: #C53030;
}

.phone-btn:hover {
    background-color: #A02622;
}

.email-btn {
    background-color: #2B6CB0;
}

.email-btn:hover {
    background-color: #2C5282;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: #FFF8F0;
    text-align: center;
}

.why-choose-us h3 {
    font-size: 2.2rem;
    text-align: center;
    color: #C53030;
    margin-bottom: 60px;
}

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

.feature {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feature h4 {
    font-size: 1.4rem;
    color: #C53030;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    line-height: 1.7;
}

/* History Section */
.history {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.history h3 {
    font-size: 2rem;
    color: #C53030;
    margin-bottom: 20px;
}

.history p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A5568;
}

/* Performance Venues */
.venues {
    padding: 80px 0;
    background-color: #FFF8F0;
    text-align: center;
}

.venues h3 {
    font-size: 2.2rem;
    text-align: center;
    color: #C53030;
    margin-bottom: 60px;
}

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

.venue-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.venue-details h4 {
    font-size: 1.6rem;
    color: #C53030;
    margin-bottom: 20px;
}

.venue-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A5568;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.testimonials h3 {
    font-size: 2.2rem;
    text-align: center;
    color: #C53030;
    margin-bottom: 60px;
}

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

.testimonial {
    background-color: #FFF8F0;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #C53030;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.customer-name {
    color: #C53030;
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #FFF8F0;
}

.contact h3 {
    font-size: 2.2rem;
    text-align: center;
    color: #C53030;
    margin-bottom: 60px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.contact-details h4 {
    font-size: 1.2rem;
    color: #C53030;
    margin-bottom: 8px;
}

.contact-details p {
    color: #4A5568;
    line-height: 1.6;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px 30px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4A5568;
    color: #A0AEC0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .content-grid,
    .venue-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services h3,
    .products h3,
    .why-choose-us h3,
    .venues h3,
    .testimonials h3,
    .contact h3 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-subtitle {
        margin-left: 0;
        display: block;
    }
    
    .services-grid,
    .products-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2D3748;
    color: #FFFFFF;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: center;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    flex-shrink: 0;
}

.cookie-link {
    grid-column: 1 / -1;
    text-align: center;
    color: #FFD700;
    text-decoration: underline;
    font-size: 0.8rem;
    margin-top: 5px;
}

.cookie-link:hover {
    color: #FFF;
}

.cookie-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background-color: #C53030;
    color: #FFFFFF;
}

.cookie-btn.accept:hover {
    background-color: #A02622;
}

.cookie-btn.reject {
    background-color: #718096;
    color: #FFFFFF;
}

.cookie-btn.reject:hover {
    background-color: #4A5568;
}

.cookie-btn.customize {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.cookie-btn.customize:hover {
    background-color: #FFFFFF;
    color: #2D3748;
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-modal-content {
    background-color: #FFFFFF;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #E2E8F0;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #2D3748;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #718096;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close:hover {
    color: #2D3748;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E2E8F0;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-category h4 {
    margin: 0;
    color: #2D3748;
    font-size: 1rem;
}

.cookie-category p {
    margin: 0;
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CBD5E0;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: #C53030;
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    background-color: #C53030;
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid #E2E8F0;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-content {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}