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

body {
    font-family: 'Yu Gothic', 'YuGothic', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #C41E3A;
    letter-spacing: -1px;
}

.brand-name a {
    text-decoration: none;
    color: inherit;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image {
    width: 100%;
    height: 400px;
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
/* Common Section Styles */
section {
    padding: 80px 0;
}

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

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

section h2 {
    font-size: 36px;
    font-weight: 600;
    color: #2c1810;
    text-align: center;
    margin-bottom: 50px;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h3 {
    color: #C41E3A;
    font-size: 18px;
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

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

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

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

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

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

.cookie-link {
    color: #C41E3A;
    text-decoration: underline;
    font-size: 14px;
    margin-left: 10px;
}

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

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

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    color: #333;
}

.cookie-modal-content h3 {
    color: #C41E3A;
    margin-bottom: 20px;
    font-size: 20px;
}

.cookie-categories {
    margin-bottom: 25px;
}

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

.cookie-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.cookie-label input[type="checkbox"] {
    margin-top: 2px;
}

.cookie-label input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-name {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.cookie-desc {
    font-size: 14px;
    color: #666;
    display: block;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-modal-buttons .cookie-btn {
    width: auto;
    min-width: 120px;
}

/* Washoku Introduction */
.washoku-intro {
    background-color: #fff;
}

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

.text-content ul {
    list-style: none;
    margin-top: 20px;
}

.text-content li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.text-content li::before {
    content: "●";
    color: #C41E3A;
    position: absolute;
    left: 0;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-container {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* UNESCO Heritage */
.unesco-heritage {
    background: linear-gradient(135deg, #f8f1f1 0%, #fff 100%);
}

.heritage-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.heritage-points {
    display: grid;
    gap: 30px;
}

.point h3 {
    font-size: 20px;
    color: #C41E3A;
    margin-bottom: 10px;
}

.point p {
    color: #666;
    font-size: 16px;
}

/* Seasonality */
.seasonality {
    background-color: #fff;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.season {
    text-align: center;
}

.season h3 {
    font-size: 24px;
    color: #C41E3A;
    margin: 20px 0 15px;
}

.season p {
    color: #666;
    font-size: 16px;
}

/* Regional Cuisines */
.regional-cuisines {
    background: linear-gradient(135deg, #f8f1f1 0%, #fff 100%);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.region {
    text-align: center;
}

.region h3 {
    font-size: 20px;
    color: #C41E3A;
    margin: 20px 0 15px;
}

.region p {
    color: #666;
    font-size: 16px;
}

/* Presentation & Art */
.presentation-art {
    background-color: #fff;
}

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

.art-principles {
    list-style: none;
    margin-top: 30px;
}

.art-principles li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.art-principles strong {
    color: #C41E3A;
}

/* Products Section */
.products {
    background: linear-gradient(135deg, #f8f1f1 0%, #fff 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product h3 {
    font-size: 24px;
    color: #C41E3A;
    margin: 20px 0 15px;
}

.product p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #C41E3A;
}

.duration {
    color: #888;
    font-size: 14px;
}

.cta-button {
    display: inline-block;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.phone-btn {
    background: #C41E3A;
}

.phone-btn:hover {
    background: #a01729;
}

.email-btn {
    background: #2c5aa0;
}

.email-btn:hover {
    background: #1e3f73;
}

/* Why Choose Section */
.why-choose {
    background-color: #fff;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.reason {
    text-align: center;
}

.icon {
    margin-bottom: 20px;
}

.reason h3 {
    font-size: 20px;
    color: #C41E3A;
    margin-bottom: 15px;
}

.reason p {
    color: #666;
    font-size: 16px;
}

/* Contacts */
.contacts {
    background: linear-gradient(135deg, #f8f1f1 0%, #fff 100%);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

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

.contact-item h3 {
    font-size: 20px;
    color: #C41E3A;
    margin-bottom: 10px;
}

.contact-item p {
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.sub-text {
    color: #888;
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: #2c1810;
    color: #fff;
    padding: 50px 0 20px;
}

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

.footer-brand {
    flex: 2;
}

.footer-brand .logo-section {
    margin-bottom: 20px;
}

.footer-brand .brand-name {
    color: #fff;
}

.footer-brand p {
    color: #ccc;
    font-size: 16px;
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.links-column h4 {
    color: #C41E3A;
    font-size: 18px;
    margin-bottom: 20px;
}

.links-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.links-column li {
    margin-bottom: 0;
}

.links-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-column a:hover {
    color: #C41E3A;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .content-grid,
    .heritage-content,
    .art-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
    
    .links-column ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .seasons-grid,
    .regions-grid,
    .reasons-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-text h3 {
        font-size: 16px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .cookie-modal-content {
        padding: 20px;
        margin: 20px;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    
    .links-column ul {
        flex-direction: column;
        gap: 8px;
    }
}