/* ============================================
   MENELIECH CAROUSEL — Blue Theme Fix
   Applies to all pages using this structure
   ============================================ */

/* ---- Slide background wrapper ---- */
.hero-slider .swiper-slide .slide-inner {
    position: relative;
}

/* ---- Blue gradient overlay (left-heavy fade) ---- */
.hero-slider .swiper-slide .slide-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(30, 58, 138, 0.85) 0%,
        rgba(30, 58, 138, 0.55) 45%,
        rgba(30, 58, 138, 0.15) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* ---- Bring text content above overlay ---- */
.hero-slider .swiper-slide .slide-inner .container {
    position: relative;
    z-index: 2;
}

/* ---- Headings ---- */
.hero-slider .slide-title h1 {
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.35);
    font-weight: 700;
    line-height: 1.2;
}

/* ---- Paragraphs ---- */
.hero-slider .slide-text p {
    color: #dbeafe;           /* soft blue-white */
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;         /* keeps text readable width */
}

/* ---- PRIMARY BUTTON (Explore / View / See) ---- */
.hero-slider .slide-btns .theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #2563eb;                /* primary blue */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    border: none;
    cursor: pointer;
}

.hero-slider .slide-btns .theme-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.55);
}

/* ---- SECONDARY BUTTON (WhatsApp / Call / Schedule) ---- */
.hero-slider .slide-btns .theme-btn-s2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-slider .slide-btns .theme-btn-s2:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* ---- Spacing between buttons ---- */
.hero-slider .slide-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* ---- Responsive tweaks ---- */
@media (max-width: 768px) {
    .hero-slider .slide-title h1 {
        font-size: 1.6rem;
    }
    
    .hero-slider .slide-text p {
        font-size: 1rem;
    }
    
    .hero-slider .slide-btns .theme-btn,
    .hero-slider .slide-btns .theme-btn-s2 {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
