﻿.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
}

    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: var(--secondary-color);
        margin: 1rem auto;
        border-radius: 2px;
    }

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(237, 27, 36, 0.3);
}

    .btn-primary:hover {
        background: #c5161e;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(237, 27, 36, 0.4);
    }

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--secondary-color);
    padding: 0.9rem 2rem;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-left: 1rem;
}

    .btn-secondary:hover {
        background: var(--secondary-color);
        color: white;
        transform: translateY(-3px);
    }

/* Hero Section */
.site-hero {
    height: 40vh;
    background: linear-gradient(135deg, #ed1b24 0%, #ed1b24 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin-bottom: 2rem;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));

}

.hero-content {
    color: white;
    max-width: 800px;
}

    .hero-content h1 {
        font-size: 4rem;
        margin-bottom: 0.5rem;
        font-weight: 800;
        text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    }

.subtitle {
    font-size: 1.5rem;
    font-style: italic;
    position: relative;
    display: inline-block;
}

    .subtitle::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background: beige;
    }

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 20px;
}

    .hero-meta span {
        display: flex;
        align-items: center;
        font-size: 1rem;
    }

    .hero-meta i {
        margin-right: 0.5rem;
        color: beige;
    }


/* Intro Section */
.site-intro {
    padding: 1.5rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

    .feature-item:hover {
        transform: translateY(-10px);
    }

    .feature-item i {
        font-size: 2rem;
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }

    .feature-item h4 {
        margin-bottom: 0.5rem;
        color: var(--dark-color);
    }

    .feature-item p {
        font-size: 0.9rem;
        margin: 0;
        color: var(--gray-color);
    }

.intro-map {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Gallery Section */
.site-gallery {
    padding: 2rem 0;
    background: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: var(--transition);
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

    .gallery-overlay i {
        color: white;
        font-size: 2rem;
    }

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Experience Section */
.site-experience {
    padding: 2rem 0;
}

.experience-tabs {
    background: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    padding: 1.2rem 2rem;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .tab-btn:hover, .tab-btn.active {
        color: var(--secondary-color);
    }

    .tab-btn.active {
        border-bottom: 3px solid var(--secondary-color);
    }

.tab-content {
    padding: 2rem;
    display: none;
}

    .tab-content.active {
        display: block;
    }

.highlight-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: rgba(237, 27, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .highlight-icon i {
        font-size: 2rem;
        color: var(--secondary-color);
    }

.highlight-text h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.tips-list {
    list-style: none;
    padding: 0;
}

    .tips-list li {
        margin-bottom: 1rem;
        padding-left: 2rem;
        position: relative;
    }

        .tips-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }

.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.season-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

    .season-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

.season-header {
    padding: 1.5rem;
    text-align: center;
    color: white;
}

    .season-header i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .season-header h3 {
        margin: 0;
        font-size: 1.3rem;
    }

.season-body {
    padding: 1.5rem;
    background: white;
}

    .season-body p {
        margin: 0.5rem 0;
        font-size: 0.9rem;
    }

.spring .season-header {
    background: #27ae60;
}

.summer .season-header {
    background: #e67e22;
}

.autumn .season-header {
    background: #d35400;
}

/* FAQ Section */
.site-faq {
    padding: 2rem 0;
    background: var(--light-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

    .faq-card:hover {
        transform: translateY(-10px);
    }

.faq-header {
    padding: 1.5rem;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .faq-header i {
        font-size: 1.5rem;
    }

    .faq-header h3 {
        margin: 0;
        font-size: 1.3rem;
    }

.faq-body {
    padding: 1.5rem;
}

    .faq-body p {
        margin: 0.8rem 0;
    }

        .faq-body p strong {
            color: var(--dark-color);
        }

/* CTA Section */
.site-cta {
    padding: 5rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--secondary-color), #c5161e);
    border-radius: 10px;
    padding: 3rem;
    color: white;
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    box-shadow: 0 20px 40px rgba(237, 27, 36, 0.3);
}

.cta-content h2 {
    margin-top: 0;
    font-size: 2rem;
}

.cta-action {
    text-align: center;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

    .btn-secondary:hover {
        background: white;
        color: var(--secondary-color);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-map {
        height: 350px;
        order: -1;
    }

    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .cta-action {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-secondary {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .tab-nav {
        flex-direction: column;
    }

    .tab-btn {
        justify-content: center;
        border-bottom: 1px solid #eee;
    }

    .highlight-card {
        grid-template-columns: 1fr;
    }

    .highlight-icon {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .hero-meta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}
