/* Destination.css - Compact Professional Styles for Serengeti Page */

/* Hero Section - Same as Index (70vh) */
.hero-section {
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

.hero-content {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 3;
    position: relative;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Section Styles - Compact */
.section-padding {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: var(--dark-brown);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary-green);
    margin: 0 auto 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section - Two Column with Slider */
.about-serengeti {
    background-color: white;
}

.about-slider {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-slide.active {
    opacity: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.about-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.about-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.about-text {
    padding-left: 30px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

/* Access Section - With Background Video/GIF */
.access-section {
    position: relative;
    overflow: hidden;
}

.access-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.access-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.access-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(74,124,89,0.6) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.access-section .container {
    position: relative;
    z-index: 3;
}

.access-section .section-header h2 {
    color: white;
}

.access-section .section-divider {
    background-color: rgba(255, 255, 255, 0.6);
}

.access-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    height: 100%;
    transition: transform 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.access-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
}

.access-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.access-content h4 {
    color: var(--dark-brown);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.access-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.explore-btn:hover {
    background: var(--dark-brown);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Activities Section - Slideshow */
.activities-section {
    background-color: white;
}

.activities-slider {
    position: relative;
    margin-top: 20px;
}

.activities-slide-container {
    overflow: hidden;
    border-radius: 10px;
}

.activity-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.activity-slide.active {
    display: block;
    opacity: 1;
}

.activity-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.activity-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.activity-content {
    padding: 20px;
    text-align: center;
}

.activity-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.2rem;
}

.activity-content h4 {
    color: var(--dark-brown);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.activity-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.activities-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.activities-nav {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.activities-nav:hover {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1);
}

.activities-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.activity-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.activity-dot.active {
    background-color: var(--primary-green);
    transform: scale(1.2);
}

/* Seasons Section - Compact Tabs */
.seasons-section {
    background-color: #f9f9f5;
}

.seasons-compact {
    margin-top: 20px;
}

.seasons-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.season-tab {
    background: white;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.season-tab:hover,
.season-tab.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.season-content-wrapper {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 300px;
}

.season-item {
    display: none;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.season-item.active {
    display: block;
    opacity: 1;
}

.season-image-compact {
    position: relative;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.season-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.season-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.season-info {
    padding-left: 20px;
}

.season-info h4 {
    color: var(--dark-brown);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.season-info p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.best-for-compact {
    background: var(--off-white);
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-green);
    margin-top: 15px;
    font-size: 0.9rem;
}

.best-for-compact strong {
    color: var(--dark-brown);
}

/* Packages Section */
.packages-section {
    background-color: white;
}

.package-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-image {
    height: 200px;
    overflow: hidden;
}

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

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-content {
    padding: 20px;
}

.package-price {
    color: var(--primary-green);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.package-content h4 {
    color: var(--dark-brown);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.package-content > p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.package-features li {
    padding: 4px 0;
    color: #444;
    font-size: 0.9rem;
}

.package-features i {
    color: var(--primary-green);
    margin-right: 8px;
    font-size: 0.8rem;
}

/* Map Section */
.map-section {
    background-color: #f9f9f5;
}

.map-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.map-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Contact Section - Different from Footer */
.contact-section {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c59 50%, #6fa86f 100%);
    color: white;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .section-header h2 {
    color: white;
}

.contact-section .section-divider {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .access-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .season-content {
        padding: 15px;
    }
    
    .package-content {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-content {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        max-width: 90%;
        position: absolute;
        top: 50%;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .activity-content {
        padding: 15px;
    }
    
    .activity-image {
        height: 180px;
    }
    
    .season-image {
        height: 180px;
    }
    
    .package-image {
        height: 180px;
    }
    
    .access-card {
        margin-bottom: 20px;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .activity-content h4,
    .season-header h4,
    .package-content h4,
    .access-content h4 {
        font-size: 1.1rem;
    }
    
    .activity-content p,
    .season-content p,
    .access-content p {
        font-size: 0.9rem;
    }
    
    .slider-controls {
        bottom: 20px;
    }
    
    .package-content {
        padding: 12px;
    }
    
    .season-content {
        padding: 12px;
    }
}