/* Culture Hero Section */
.culture-hero {
    height: 70vh;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
                url('../assets/images/culture/culture-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -90px;
}

.hero-container {
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.hero-title {
    font-size: 4.5rem;
    color: #2C3E2D;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: #5C6D5D;
    font-style: italic;
}

/* Tea Guide Section */
.tea-guide {
    padding: 120px 0;
    background-color: white;
}

.guide-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
}

.guide-content {
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
}

.guide-content h3 {
    font-size: 2.2rem;
    color: #2C3E2D;
    margin-bottom: 3rem;
    font-weight: 300;
}

.guide-steps {
    list-style: none;
    padding: 0;
}

.guide-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.guide-steps li:hover {
    transform: translateX(10px);
}

.step-number {
    font-size: 1.2rem;
    color: #2C3E2D;
    opacity: 0.5;
}

.step-content h4 {
    font-size: 1.4rem;
    color: #2C3E2D;
    margin-bottom: 0.8rem;
}

.step-content p {
    color: #5C6D5D;
    line-height: 1.8;
    font-size: 1.1rem;
}

.guide-image {
    position: relative;
    opacity: 0;
    animation: fadeInRight 1s ease forwards;
}

.guide-image:before {
    content: "";
    position: absolute;
    top: -2rem;
    right: -2rem;
    bottom: 2rem;
    left: 2rem;
    border: 1px solid rgba(44, 62, 45, 0.1);
    z-index: -1;
}

.guide-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Seasonal Guide Section */
.seasonal-guide {
    padding: 120px 0;
    background-color: #F4F1EA;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.season-card {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.season-card:nth-child(1) { animation: fadeInUp 1s ease forwards 0.2s; }
.season-card:nth-child(2) { animation: fadeInUp 1s ease forwards 0.4s; }
.season-card:nth-child(3) { animation: fadeInUp 1s ease forwards 0.6s; }
.season-card:nth-child(4) { animation: fadeInUp 1s ease forwards 0.8s; }

.season-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 62, 45, 0.1);
}

.season-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.season-card h3 {
    font-size: 1.8rem;
    color: #2C3E2D;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.season-card p {
    color: #5C6D5D;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.season-temp {
    font-size: 0.9rem;
    color: #2C3E2D;
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid rgba(44, 62, 45, 0.1);
}

/* Stories Section */
.stories {
    padding: 120px 0;
    background-color: white;
}

.featured-story {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-bottom: 4rem;
    background: #F4F1EA;
    padding: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.story-image {
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-category {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2C3E2D;
    margin-bottom: 1rem;
}

.featured-story h3 {
    font-size: 2.4rem;
    color: #2C3E2D;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.3;
}

.featured-story p {
    font-size: 1.2rem;
    color: #5C6D5D;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.read-more {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2C3E2D;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: #1A2F24;
    transform: translateY(-2px);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.story-card {
    background: white;
    box-shadow: 0 10px 30px rgba(44, 62, 45, 0.05);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 62, 45, 0.1);
}

.story-card .story-content {
    padding: 2rem;
}

.story-card h4 {
    font-size: 1.4rem;
    color: #2C3E2D;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.story-card p {
    color: #5C6D5D;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .seasonal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-story {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .seasonal-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .guide-steps li {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-number {
        margin-bottom: 0.5rem;
    }

    .featured-story h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .guide-content h3 {
        font-size: 1.8rem;
    }
}
