/* ========================================================================
   TREK VENTO HERO CAROUSEL STYLES
   Modern, Responsive Hero Section with Trek Information
   ======================================================================== */

/* Hero Carousel Wrapper */
.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

/* Individual Hero Slide */
.hero-slide {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

/* Hero Content Styling */
.hero-content {
    max-width: 900px;
    padding: 60px 0;
    animation: fadeInUp 0.8s ease;
}

/* Trek Badge */
.trek-badge {
    display: inline-block;
    background: rgba(219, 16, 16, 0.9);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(219, 16, 16, 0.3);
}

/* Trek Subtitle */
.trek-subtitle {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    opacity: 0.95;
}

/* Trek Title */
.trek-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
    letter-spacing: -1px;
}

/* Trek Description */
.trek-description {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 35px;
    max-width: 700px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
}

/* Trek Info Boxes */
.trek-info-boxes {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trek-info-boxes .info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.trek-info-boxes .info-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.trek-info-boxes .info-box i {
    font-size: 24px;
    color: #DB1010;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.trek-info-boxes .info-box div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trek-info-boxes .info-box .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trek-info-boxes .info-box .value {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #DB1010;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Swiper Navigation Buttons */
.hero-swiper-button-prev,
.hero-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 18px;
}

.hero-swiper-button-prev:hover,
.hero-swiper-button-next:hover {
    background: rgba(219, 16, 16, 0.9);
    border-color: #DB1010;
    transform: translateY(-50%) scale(1.1);
}

.hero-swiper-button-prev {
    left: 30px;
}

.hero-swiper-button-next {
    right: 30px;
}

/* Swiper Pagination */
.hero-swiper-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: #DB1010;
    border-color: #ffffff;
    width: 40px;
    border-radius: 10px;
}

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

/* ========================================================================
   RESPONSIVE DESIGN
   ======================================================================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .hero-slide {
        height: auto;
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 0px 0;
    }
    
    .trek-title {
        font-size: 42px;
    }
    
    .trek-subtitle {
        font-size: 16px;
    }
    
    .trek-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .trek-info-boxes {
        gap: 15px;
    }
    
    .trek-info-boxes .info-box {
        padding: 10px 16px;
        flex: 1 1 calc(50% - 15px);
        min-width: 140px;
    }
    
    .trek-info-boxes .info-box i {
        font-size: 20px;
    }
    
    .trek-info-boxes .info-box .label {
        font-size: 11px;
    }
    
    .trek-info-boxes .info-box .value {
        font-size: 14px;
    }
    
    .hero-buttons {
        gap: 15px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }
    
    .hero-swiper-button-prev,
    .hero-swiper-button-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-swiper-button-prev {
        left: 15px;
    }
    
    .hero-swiper-button-next {
        right: 15px;
    }
    
    .hero-swiper-pagination {
        bottom: 25px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-carousel-wrapper {
        min-height: 100vh;
    }
    
    .hero-slide {
        min-height: 100vh;
        align-items: flex-start;
        padding-top: 120px;
    }
    
    .hero-content {
        padding: 20px 0;
    }
    
    .trek-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .trek-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .trek-subtitle {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .trek-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .trek-info-boxes {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .trek-info-boxes .info-box {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .trek-info-boxes .info-box i {
        font-size: 18px;
    }
    
    .trek-info-boxes .info-box .label {
        font-size: 10px;
    }
    
    .trek-info-boxes .info-box .value {
        font-size: 13px;
    }
    
    .btn-default,
    .btn-outline {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero-swiper-button-prev,
    .hero-swiper-button-next {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .hero-swiper-button-prev {
        left: 10px;
    }
    
    .hero-swiper-button-next {
        right: 10px;
    }
    
    .hero-swiper-pagination {
        bottom: 20px;
    }
    
    .hero-swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    .hero-swiper-pagination .swiper-pagination-bullet-active {
        width: 30px;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .trek-title {
        font-size: 28px;
    }
    
    .trek-info-boxes .info-box {
        flex: 1 1 100%;
    }
}
