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

body {
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Sans', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FDFBF7;
}

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

/* Header */
.header {
    background-color: #FDFBF7;
    padding: 20px 0;
    border-bottom: 2px solid #8B2635;
}

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

.logo-icon {
    display: block;
}

.brand-name {
    font-size: 2rem;
    font-weight: 300;
    color: #2C2C2C;
    letter-spacing: 2px;
}

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

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-image-placeholder {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 60px 20px;
    margin: 0 auto;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

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

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

section h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #8B2635;
    font-weight: 300;
}

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

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

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

.about-image-placeholder {
    background-color: #E8E6E0;
    border: 2px dashed #C0BDB5;
    border-radius: 8px;
    padding: 80px 20px;
    text-align: center;
    color: #8B8680;
    font-size: 1.1rem;
}

/* Theatre Types Section */
.theatre-types {
    background-color: white;
}

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

.type-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #F8F6F0;
    border-radius: 12px;
    border: 1px solid #E8E6E0;
}

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

.type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #8B2635;
}

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

/* Products Section */
.products {
    background-color: #F8F6F0;
}

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

.product-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #E8E6E0;
}

.product-image-placeholder {
    background-color: #F0F0F0;
    border: 2px dashed #C0C0C0;
    border-radius: 8px;
    padding: 60px 20px;
    margin-bottom: 20px;
    color: #999;
    font-size: 1rem;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #8B2635;
}

.product-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #8B2635 !important;
    margin-bottom: 15px !important;
}

.contact-btn {
    background-color: #8B2635;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
}

.contact-btn:hover {
    background-color: #732030;
}

.product-image-placeholder img,
.about-image-placeholder img,
.arts-image-placeholder img,
.experience-image-placeholder img,
.history-image-placeholder img,
.location-image-placeholder img,
.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.hero-image-placeholder img {
    max-height: 300px;
}

.product-image-placeholder img {
    height: 200px;
}

.about-image-placeholder img,
.arts-image-placeholder img,
.experience-image-placeholder img,
.history-image-placeholder img,
.location-image-placeholder img {
    height: 250px;
}

/* Traditional Arts Section */
.traditional-arts {
    background-color: white;
}

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

.arts-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.arts-image-placeholder {
    background-color: #F0F0F0;
    border: 2px dashed #C0C0C0;
    border-radius: 8px;
    padding: 80px 20px;
    text-align: center;
    color: #999;
    font-size: 1.1rem;
}

/* Experience Section */
.experience {
    background-color: #F8F6F0;
}

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

.experience-image-placeholder {
    background-color: #E8E6E0;
    border: 2px dashed #C0BDB5;
    border-radius: 8px;
    padding: 80px 20px;
    text-align: center;
    color: #8B8680;
    font-size: 1.1rem;
}

.experience-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* History Section */
.history {
    background-color: white;
}

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

.history-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.history-image-placeholder {
    background-color: #F0F0F0;
    border: 2px dashed #C0C0C0;
    border-radius: 8px;
    padding: 80px 20px;
    text-align: center;
    color: #999;
    font-size: 1.1rem;
}

/* Location Section */
.location {
    background-color: #F8F6F0;
}

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

.location-image-placeholder {
    background-color: #E8E6E0;
    border: 2px dashed #C0BDB5;
    border-radius: 8px;
    padding: 80px 20px;
    text-align: center;
    color: #8B8680;
    font-size: 1.1rem;
}

.location-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contacts Section */
.contacts {
    background-color: white;
    padding: 80px 0 40px;
}

.contacts .container {
    text-align: left;
}

.contacts h2 {
    text-align: center;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background-color: #F8F6F0;
    border-radius: 12px;
}

.contact-icon svg {
    display: block;
}

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

.contact-details p {
    color: #666;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: #2C2C2C;
    color: white;
    padding: 50px 0 30px;
}

.footer .container {
    text-align: left;
}

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

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

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: #D4AF37;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C2C2C;
    color: white;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: flex;
    align-items: center;
    gap: 25px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    line-height: 1.5;
}

.cookie-text a {
    color: #D4AF37;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

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

.cookie-btn.accept {
    background-color: #8B2635;
    color: white;
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: #ccc;
    border: 1px solid #666;
}

.cookie-btn.reject:hover {
    background-color: #444;
    color: white;
}

.cookie-btn.customize {
    background-color: #555;
    color: white;
    border: 1px solid #777;
}

.cookie-btn.customize:hover {
    background-color: #666;
}

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

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background-color: white;
    border-radius: 8px;
    max-width: 600px;
    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 25px;
    border-bottom: 1px solid #eee;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #2C2C2C;
    font-size: 1.3rem;
}

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

.close-modal:hover {
    color: #2C2C2C;
}

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

.cookie-modal-body > p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

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

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.cookie-category-header input[type="checkbox"] {
    margin: 0;
}

.cookie-category-header label {
    margin: 0;
    color: #2C2C2C;
    cursor: pointer;
}

.cookie-category p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-left: 25px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .about-content,
    .arts-content,
    .experience-content,
    .history-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

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

    .contacts-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-item {
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-modal-content {
        width: 95%;
        margin: 20px;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-content h2 {
        font-size: 1.7rem;
    }

    section {
        padding: 60px 0;
    }

    .type-card,
    .product-card {
        padding: 25px 20px;
    }

    .hero-image-placeholder,
    .about-image-placeholder,
    .arts-image-placeholder,
    .experience-image-placeholder,
    .history-image-placeholder,
    .location-image-placeholder,
    .product-image-placeholder {
        padding: 40px 15px;
    }
}