/* Explore Page Specific Styles */

/* Hero Section */
.explore-hero {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.95), rgba(30, 61, 114, 0.9)),
                url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0 6rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.explore-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 36, 99, 0.3) 100%);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Explore Content Section */
.explore-content {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.explore-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.explore-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.explore-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Visit Tabs - Minimal design for Explore Page */
.explore-content .visit-tabs {
    margin-bottom: 3rem;
    border-bottom: 2px solid #e0e0e0;
    gap: 0;
}

.explore-content .visit-tab {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 0;
}

.explore-content .visit-tab:hover {
    background: rgba(10, 36, 99, 0.05);
    color: var(--primary-blue);
    transform: none;
    box-shadow: none;
}

.explore-content .visit-tab.active {
    background: transparent;
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    font-weight: 600;
    box-shadow: none;
}

/* Visit Grid - Enhanced for Explore Page */
.explore-content .visit-grid {
    margin-bottom: 4rem;
}

/* Call to Action Section */
.explore-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(10, 36, 99, 0.3);
    margin-top: 3rem;
}

.explore-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.explore-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.6);
    background: #ffd54f;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Visit Cards for Explore Page */
.explore-content .visit-card {
    animation: fadeInUp 0.6s ease-out both;
}

.explore-content .visit-card:nth-child(1) { animation-delay: 0.1s; }
.explore-content .visit-card:nth-child(2) { animation-delay: 0.2s; }
.explore-content .visit-card:nth-child(3) { animation-delay: 0.3s; }
.explore-content .visit-card:nth-child(4) { animation-delay: 0.4s; }
.explore-content .visit-card:nth-child(5) { animation-delay: 0.5s; }
.explore-content .visit-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .explore-hero {
        padding: 6rem 0 4rem;
    }

    .explore-intro h2 {
        font-size: 2rem;
    }

    .explore-intro p {
        font-size: 1rem;
    }

    .explore-cta h3 {
        font-size: 1.8rem;
    }

    .explore-cta p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .visit-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .visit-tab {
        width: 100%;
        justify-content: center;
    }
}

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

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

    .explore-intro h2 {
        font-size: 1.6rem;
    }

    .explore-cta {
        padding: 3rem 1.5rem;
    }

    .explore-cta h3 {
        font-size: 1.5rem;
    }
}
