﻿.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
    position: relative;
    font-size: 2.2rem;
}

    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: var(--secondary-color);
        margin: 0.5rem auto;
    }

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: #c5161e;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

/* Hero Section */
.site-hero {
    height: 45vh;
    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: 1rem;
    font-style: italic;
    margin-bottom: 2rem;
    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: 0.7rem;
    }

    .hero-meta i {
        margin-right: 0.5rem;
        color: beige;
    }


/* Highlights Section */
.highlights {
    padding: 2rem 0;
    background-color: var(--light-color);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .highlight-card:hover {
        transform: translateY(-10px);
        border-top: 4px solid var(--secondary-color);
    }

    .highlight-card i {
        font-size: 2.5rem;
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }

    .highlight-card h3 {
        margin: 1rem 0;
        color: var(--dark-color);
    }

/* Itinerary Section */
.itinerary {
    padding: 2rem 0;
}

.itinerary-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    background: none;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .tab-btn:hover, .tab-btn.active {
        background: var(--secondary-color);
        color: white;
    }

.tab-content {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

    .tab-content.active {
        display: block;
    }

    .tab-content h3 {
        color: #2d3748;
        margin-bottom: 1.5rem;
    }

    .tab-content ul {
        list-style: none;
        padding: 0;
    }

    .tab-content li {
        margin-bottom: 1rem;
        padding-left: 2rem;
        position: relative;
    }

        .tab-content li i {
            color: var(--secondary-color);
            position: absolute;
            left: 0;
            top: 0.2rem;
        }

/* Gallery Section */
.gallery {
    padding: 3rem 0;
    background-color: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

/* Policies Section */
.policies {
    padding: 5rem 0;
}

.legal-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

    .legal-card ul {
        list-style: none;
        padding: 0;
    }

    .legal-card li {
        margin-bottom: 1rem;
        padding-left: 2rem;
        position: relative;
    }

        .legal-card li i {
            color: var(--secondary-color);
            position: absolute;
            left: 0;
            top: 0.2rem;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .tab-btn {
        margin-bottom: 0.5rem;
        width: 100%;
    }

    .booking-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }

        .hero h1 {
            font-size: 2rem;
        }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
