﻿/* ===== سبک کلی اسلایدر VIP ===== */
.vip-carousel {
    position: relative;
    overflow: hidden;
}

.vip-carousel .carousel-inner {
    width: 100%;
}

.vip-carousel .carousel-item {
    position: relative;
    min-height: 100vh;
}

    .vip-carousel .carousel-item img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }

/* ===== لایه متنی روی اسلایدر ===== */
.vip-carousel .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    padding: 0 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.vip-carousel-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

    .vip-carousel-text span {
        font-weight: bold;
        color: #0d6efd;
    }

/* ===== دکمه‌ها ===== */
.vip-carousel-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.vip-btn-primary,
.vip-btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vip-btn-primary {
    background: #0d6efd;
    color: #fff;
}

    .vip-btn-primary:hover {
        background: #0a58ca;
    }

.vip-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

    .vip-btn-secondary:hover {
        background: rgba(255,255,255,0.35);
    }

/* ===== کنترل‌های carousel ===== */
.vip-carousel .carousel-control-prev,
.vip-carousel .carousel-control-next {
    width: 5%;
}

.vip-carousel .carousel-control-prev-icon,
.vip-carousel .carousel-control-next-icon {
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.7));
}

/* ===== ریسپانسیو موبایل ===== */
@media (max-width: 768px) {
    .vip-carousel .carousel-item {
        min-height: 60vh;
    }

    .vip-carousel-text {
        font-size: 1rem;
    }

    .vip-carousel-buttons {
        gap: 8px;
    }

    .vip-btn-primary,
    .vip-btn-secondary {
        width: 90%;
        font-size: 0.9rem;
        padding: 10px 0;
    }
}
