/**
 * Public styles for ITGen Banner Slider
 */

.banner-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 600px; /* Minimum height for smaller screens */
}

/* Left section - Main content */
.banner-content {
    width: 50%;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: white;
    min-height: 600px;
}

/* Button container with icon */
.button-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bookmark-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f39c12;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
}

.location-category {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 10px;
    padding: 5px 0px;
    display: inline-block;
    /**backdrop-filter: blur(5px);*/
    min-height: 2rem;
}

.banner-content h1.location-title {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    min-height: 4.4rem;
}

.banner-content h2.location-subtitle {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 2.75rem;
}

.location-description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 600px;
    margin-bottom: 40px;
    min-height: 5.1rem;
}

.button-container a.discover-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: auto;
    white-space: nowrap;
    text-decoration: none;
}

.discover-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
    text-decoration: none;
}

/* Right section - Thumbnails */
.thumbnails-section {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.thumbnails-wrapper {
    display: flex;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.thumbnails-container {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.thumbnail-card {
    width: 14.375rem;
    height: 21.875rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 20px;
}

.thumbnail-card:hover {
    transform: translateY(-10px);
}

/**
.thumbnail-card.active {
    transform: scale(1.05);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.35);
    z-index: 10;
}*/

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

.thumbnail-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.thumbnail-location {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.thumbnail-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
}

.thumbnail-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

/* Navigation controls */
.navigation-controls {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding: 0 10px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-btn {
    /* min-width: 40px; */
    /* min-height: 40px; */
    padding: 30px;
    border-radius: 50%;
    border: 1px solid white;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.progress-container {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 30px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #00A3E0;
    transition: width 0.3s linear;
}

.slide-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    opacity: 0.8;
}

/* Background images */
.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

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

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

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .location-title {
        font-size: 3.5rem;
    }
    
    .location-subtitle {
        font-size: 2rem;
    }
}

@media screen and (max-width: 992px) {
    .banner-container {
        flex-direction: column;
        height: auto;
    }
    
    .banner-content,
    .thumbnails-section {
        width: 100%;
        padding: 30px;
    }
    
    .banner-content {
        min-height: 500px;
    }
    
    .location-title {
        font-size: 3rem;
    }
    
    .location-subtitle {
        font-size: 1.8rem;
    }
    
    .thumbnail-card {
        width: 12rem;
        height: 18rem;
    }
}

@media screen and (max-width: 768px) {
    .banner-content {
        padding: 20px;
        min-height: 400px;
    }
    
    .location-title {
        font-size: 2.5rem;
    }
    
    .location-subtitle {
        font-size: 1.5rem;
    }
    
    .location-description {
        font-size: 0.9rem;
    }
    
    .thumbnail-card {
        width: 10rem;
        height: 15rem;
    }
    
    .thumbnail-title {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 576px) {
    .thumbnail-card {
        width: 8rem;
        height: 12rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .slide-number {
        font-size: 2rem;
    }
} 