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

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2D3748;
    background-color: #FFFBEB;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    line-height: 1.2;
    color: #1A202C;
}

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

/* Header Styles */
.header {
    background-color: #FFFBEB;
    padding: 20px 0;
    border-bottom: 1px solid #E5E7EB;
}

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

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

.brand-name {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    font-weight: 600;
    color: #1A202C;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
}

.hero-description {
    font-size: 22px;
    opacity: 0.9;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-button {
    background-color: #DC2626;
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 19px;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.cta-button:hover {
    background-color: #B91C1C;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

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

.section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #1A202C;
}

/* Featured Reviews */
.featured-reviews {
    background-color: #F9FAFB;
    text-align: center;
}

.featured-reviews .container {
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    justify-items: center;
}

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

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.review-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    position: relative;
}

.review-image-placeholder::after {
    content: '📖';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    opacity: 0.3;
}

.review-content {
    padding: 24px;
}

.review-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1A202C;
}

.review-excerpt {
    color: #4B5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.rating {
    color: #F59E0B;
    font-size: 16px;
}

.date {
    color: #6B7280;
}

/* Must Read Section */
.must-read {
    text-align: center;
}

.must-read .container {
    text-align: center;
}

.must-read-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    text-align: left;
}

.must-read-text {
    font-size: 18px;
    color: #4B5563;
    line-height: 1.8;
}

.must-read-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.book-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 12px;
    border-left: 4px solid #4F46E5;
}

.book-cover-placeholder {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
}

.book-cover-placeholder::after {
    content: '📚';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    opacity: 0.5;
}

.book-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A202C;
}

.book-info p {
    color: #4B5563;
    font-size: 14px;
}

/* Reading List 2025 */
.reading-list {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    text-align: center;
}

.reading-list .container {
    text-align: center;
}

.reading-list-content {
    text-align: center;
}

.list-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 600;
    color: #4F46E5;
    font-family: 'Crimson Text', serif;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.list-description {
    font-size: 18px;
    color: #4B5563;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Author Spotlight */
.author-spotlight {
    text-align: center;
}

.author-spotlight .container {
    text-align: center;
}

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

.author-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1A202C;
}

.author-bio {
    font-size: 18px;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 24px;
}

.author-works {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.work-title {
    background: #4F46E5;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Tokyo Culture */
.tokyo-culture {
    background-color: #F9FAFB;
    text-align: center;
}

.tokyo-culture .container {
    text-align: center;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    justify-items: center;
}

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

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

.culture-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    position: relative;
}

.culture-image-placeholder::after {
    content: '🏛️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    opacity: 0.3;
}

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

.review-card .culture-image {
    border-radius: 12px 12px 0 0;
}

.culture-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 24px 24px 12px;
    color: #1A202C;
}

.culture-card p {
    padding: 0 24px 24px;
    color: #4B5563;
    line-height: 1.6;
}

/* Services */
.services {
    text-align: center;
}

.services .container {
    text-align: center;
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #4F46E5;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1A202C;
}

.service-card p {
    color: #4B5563;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-price {
    font-size: 20px;
    font-weight: 600;
    color: #4F46E5;
    margin-bottom: 16px;
}

.service-button {
    background-color: #4F46E5;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-button:hover {
    background-color: #4338CA;
}

.consultation-button {
    background-color: #059669;
}

.consultation-button:hover {
    background-color: #047857;
}

.event-button {
    background-color: #DC2626;
}

.event-button:hover {
    background-color: #B91C1C;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: white;
    text-align: center;
}

.newsletter .container {
    text-align: center;
}

.newsletter h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.newsletter p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: white;
}

.email-input:focus {
    outline: 3px solid rgba(255, 255, 255, 0.3);
}

.newsletter-button {
    background-color: #1A202C;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: #2D3748;
}

/* Contacts */
.contacts {
    background-color: #F9FAFB;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.contact-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A202C;
}

.contact-info p {
    color: #4B5563;
    margin: 0;
}

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

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

.footer-brand {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand-name {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.footer-description {
    color: #9CA3AF;
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

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

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

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

.footer-section a:hover {
    color: white;
}

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

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

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

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #1A202C;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    color: #1A202C;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #1A202C;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4F46E5;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-button {
    background-color: #4F46E5;
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #4338CA;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 19px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .must-read-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .list-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .spotlight-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .author-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-button {
        padding: 16px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px;
        width: 95%;
    }
}