/* ========== HERO SLIDER BASE ========== */
.wpo-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.slide-inner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ========== DARK OVERLAY ========== */
.slide-inner::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* ========== HERO CONTENT ========== */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 30px;
}

.hero-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

.hero-main-title {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.2;
     color: #fff;
}

.hero-main-title .highlight {
    color: red;
}

.hero-subtitle {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 25px;
    color: #fff;

}

/* ========== CENTERED AUTH BUTTONS ========== */
.auth-buttons {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    display: flex;
    gap: 10px;
}

.auth-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.register-btn {
    background-color: #ffc107;
}

.login-btn {
    background-color: #28a745;
}

.register-btn:hover {
    background-color: #e0a800;
    transform: scale(1.05);
}

.login-btn:hover {
    background-color: #1e7e34;
    transform: scale(1.05);
}

.auth-btn:active {
    transform: scale(0.97);
}

/* ========== SEARCH FORM ========== */
.search-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.5);
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
}

.search-select,
.search-btn {
    padding: 14px 20px;
    font-size: 18px;
    border-radius: 8px;
    border: none;
    min-width: 180px;
}

.search-select {
    background-color: #fff;
    color: #000;
}

.search-btn {
    background-color: #28a745;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.search-btn:hover {
    background-color: #218838;
}

/* ========== SWIPER PAGINATION ========== */
.swiper-pagination {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
    z-index: 9;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 991px) {
    .hero-main-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .search-select {
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 20px;
    }

    .hero-main-title {
        font-size: 30px;
    }

    .search-form {
        flex-direction: column;
        align-items: center;
    }

    .search-select,
    .search-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 24px;
    }

    .auth-buttons {
        flex-direction: row;
        top: 10px;
    }

    .auth-btn {
        font-size: 14px;
        padding: 8px 14px;
    }

    .search-select,
    .search-btn {
        font-size: 16px;
        padding: 12px 16px;
    }
}
.top-link {
    display: inline-block;
    margin: 8px;
    padding: 10px 15px;
    background: #0e6fbc;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}
.top-link:hover {
    background: #0a57a0;
}
