/* Banner Container */
/* Banner Container - Make it bigger */




/* Banner Container - Full width stretch */
.banner-container {
    width: 100vw;
    max-width: none;
    height: 500px; /* Increased from 400px to give more room */
    position: relative;
    background: #f8f9fa;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Map containers - Centered within the full-width banner */
.map-container {
    width: 80%; /* Increased from 60% */
    max-width: 900px; /* Increased from 800px */
    height: 580px; /* Increased from 280px by 100px */
    border-radius: 6px;
    margin: 0 auto 15px auto;
    position: relative;
    background: #f0f0f0;
    border: 1px solid #ddd;
}
/* Progress dots - Force visibility with stronger styling */
.progress-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 1000; /* Bring to front */
}

.dot {
    width: 14px !important; /* Force the styles */
    height: 14px !important;
    border-radius: 50% !important;
    background: #555555 !important; /* Darker grey that's more visible */
    transition: background 0.3s ease !important;
    cursor: pointer !important;
    border: 3px solid #ffffff !important; /* Thicker white border */
    box-shadow: 0 2px 6px rgba(0,0,0,0.4) !important; /* Stronger shadow */
    opacity: 1 !important; /* Force full opacity */
}

.dot.active {
    background: #222222 !important; /* Much darker for active */
    border-color: #ffffff !important;
}

.dot:hover {
    background: #333333 !important;
    transform: scale(1.1); /* Slight grow on hover */
}
/* Mobile responsive */
@media (max-width: 768px) {
    .banner-container {
        height: 350px;
    }
    
    .map-container {
        width: 90%; /* Wider on mobile */
        height: 220px;
    }
}


/* Slide adjustments for larger size */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 40px 20px; /* More padding */
    box-sizing: border-box;
}

.slide h3 {
    margin: 0 0 25px 0; /* More margin */
    font-size: 32px; /* Bigger font */
    font-weight: 600;
    color: #333;
    text-align: center;
}




/* Map Legend */
.map-legend {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 4px;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.legend-color {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border-radius: 2px;
}


.slide.active {
    opacity: 1;
}



/* Map Placeholder */
.map-placeholder {
    width: 90%;
    height: 120px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
}

/* CTA Slide Specific */
.cta-title {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #dc3545 !important;
    margin-bottom: 10px !important;
}

.cta-content {
    text-align: center;
}

.cta-content p {
    font-size: 18px;
    color: #666;
    margin: 0 0 20px 0;
}

.cta-button {
    background: #dc3545;
    color: rgba(255, 255, 255, 0.341);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #c82333;
}

/* Progress Dots */
.progress-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

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

.dot.active {
    background: #fff;
}





/* Hide mapbox attribution for banner */
.mapboxgl-ctrl-attrib {
    font-size: 8px;
}

.mapboxgl-ctrl-logo {
    display: none !important;
}

/* Pause on Hover */
.banner-container:hover .slide {
    animation-play-state: paused;
}