/**
 * NHC HERO SLIDER - Standart Swiper Tasarımı
 * Arka plan görselli, tema renkli, sola hizalanmış içerik
 */

/* ── Ana Slider Kapsayıcı ── */
.nhc-hero-slider {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
    background: #0d1b2a;
}

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

.nhc-hero-slider .swiper-wrapper {
    height: 100%;
}

/* ── Her Slide ── */
.nhc-hero-slider .swiper-slide {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 3.5rem 0;
}

/* ── Gradient Overlay (Soldan Sağa — Yazı alanı koyu, sağ şeffaf) ── */
.nhc-hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.65) 45%,
        rgba(0, 0, 0, 0.20) 75%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 1;
}

/* ── Tema: Yeşil (Gıda Takviyesi 1) ── */
.nhc-hero-slider .nhc-slide-green::before {
    background: linear-gradient(
        105deg,
        rgba(10, 60, 35, 0.90) 0%,
        rgba(10, 60, 35, 0.72) 45%,
        rgba(10, 60, 35, 0.22) 75%,
        rgba(10, 60, 35, 0.05) 100%
    );
}

/* ── Tema: Amber (Gıda Takviyesi 2 - Bitkisel) ── */
.nhc-hero-slider .nhc-slide-amber::before {
    background: linear-gradient(
        105deg,
        rgba(70, 40, 5, 0.90) 0%,
        rgba(70, 40, 5, 0.72) 45%,
        rgba(70, 40, 5, 0.22) 75%,
        rgba(70, 40, 5, 0.05) 100%
    );
}

/* ── Tema: Mavi (Ozon Terapi) ── */
.nhc-hero-slider .nhc-slide-blue::before {
    background: linear-gradient(
        105deg,
        rgba(5, 20, 75, 0.92) 0%,
        rgba(5, 20, 75, 0.74) 45%,
        rgba(5, 20, 75, 0.22) 75%,
        rgba(5, 20, 75, 0.05) 100%
    );
}

/* ── Tema: Teal (Akupunktur) ── */
.nhc-hero-slider .nhc-slide-teal::before {
    background: linear-gradient(
        105deg,
        rgba(5, 40, 40, 0.92) 0%,
        rgba(5, 40, 40, 0.74) 45%,
        rgba(5, 40, 40, 0.22) 75%,
        rgba(5, 40, 40, 0.05) 100%
    );
}

/* ── Tema: Bordo (Hacamat) ── */
.nhc-hero-slider .nhc-slide-burgundy::before {
    background: linear-gradient(
        105deg,
        rgba(65, 8, 20, 0.92) 0%,
        rgba(65, 8, 20, 0.74) 45%,
        rgba(65, 8, 20, 0.22) 75%,
        rgba(65, 8, 20, 0.05) 100%
    );
}

/* ── İçerik Kutusu ── */
.nhc-slide-content {
    position: relative;
    z-index: 10;
    max-width: 620px;
    padding: 0 2.5rem 0 8%;
    text-align: left;
}

/* ── Rozet ── */
.nhc-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.80rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: nhcFadeInDown 0.7s ease-out both;
}

/* ── Başlık ── */
.nhc-slide-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
    letter-spacing: -0.02em;
    animation: nhcFadeInUp 0.7s ease-out 0.15s both;
}

.nhc-slide-title span {
    display: block;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(200,230,220,0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nhc-slide-green .nhc-slide-title span {
    background: linear-gradient(90deg, #a8e6cc 0%, #5ecfa0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nhc-slide-amber .nhc-slide-title span {
    background: linear-gradient(90deg, #ffd280 0%, #f5a623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nhc-slide-blue .nhc-slide-title span {
    background: linear-gradient(90deg, #a0c8f0 0%, #5ba3e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nhc-slide-teal .nhc-slide-title span {
    background: linear-gradient(90deg, #a0d8c8 0%, #4db89a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nhc-slide-burgundy .nhc-slide-title span {
    background: linear-gradient(90deg, #f0c0b0 0%, #e08060 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Açıklama ── */
.nhc-slide-description {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    animation: nhcFadeInUp 0.7s ease-out 0.30s both;
}

/* ── Butonlar ── */
.nhc-slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    animation: nhcFadeInUp 0.7s ease-out 0.45s both;
}

.nhc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.28s ease;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.nhc-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s ease;
    border-radius: inherit;
}

.nhc-btn:hover::after {
    background: rgba(255, 255, 255, 0.12);
}

.nhc-btn-primary {
    background: #ffffff;
    color: #1a4a35;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
}

.nhc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.38);
    color: #0e3020;
    text-decoration: none;
}

/* Tema renkli birincil butonlar */
.nhc-slide-green .nhc-btn-primary  { color: #0d4a28; }
.nhc-slide-amber .nhc-btn-primary  { color: #5a2e03; }
.nhc-slide-blue .nhc-btn-primary   { color: #07205a; }
.nhc-slide-teal .nhc-btn-primary   { color: #073535; }
.nhc-slide-burgundy .nhc-btn-primary { color: #4a0812; }

.nhc-btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.nhc-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.80);
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ── Özellikler (alttaki badge'ler) ── */
.nhc-slide-features {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
    animation: nhcFadeInUp 0.7s ease-out 0.60s both;
}

.nhc-slide-feature {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    padding: 0.35rem 0.85rem;
    backdrop-filter: blur(8px);
}

.nhc-slide-feature i {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.70);
}

/* ── Sayfalama (Pagination) ── */
.nhc-hero-slider .swiper-pagination {
    bottom: 1.5rem !important;
}

.nhc-hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.50);
    opacity: 1;
    transition: all 0.3s ease;
}

.nhc-hero-slider .swiper-pagination-bullet-active {
    width: 36px;
    border-radius: 6px;
    background: #ffffff;
}

/* ── Navigasyon Okları ── */
.nhc-hero-slider .swiper-button-next,
.nhc-hero-slider .swiper-button-prev {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: all 0.28s ease;
    top: 50%;
}

.nhc-hero-slider .swiper-button-next:hover,
.nhc-hero-slider .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.26);
    border-color: rgba(255, 255, 255, 0.50);
    transform: translateY(-50%) scale(1.08);
}

.nhc-hero-slider .swiper-button-next::after,
.nhc-hero-slider .swiper-button-prev::after {
    font-size: 18px;
    color: #ffffff;
    font-weight: 900;
}

.nhc-hero-slider .swiper-button-prev { left: 2rem; }
.nhc-hero-slider .swiper-button-next { right: 2rem; }

/* ── Animasyonlar ── */
@keyframes nhcFadeInDown {
    from { opacity: 0; transform: translateY(-25px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes nhcFadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .nhc-hero-slider {
        height: 680px;
    }
}

@media (max-width: 991px) {
    .nhc-hero-slider {
        height: 640px;
    }

    .nhc-slide-content {
        padding: 0 2rem 0 5%;
        max-width: 560px;
    }
}

@media (max-width: 767px) {
    .nhc-hero-slider {
        height: auto;
        min-height: 560px;
    }

    .nhc-hero-slider .swiper,
    .nhc-hero-slider .swiper-wrapper {
        height: auto;
        min-height: 560px;
    }

    .nhc-hero-slider .swiper-slide {
        min-height: 560px;
        align-items: flex-start;
        padding: 3.5rem 0 4rem;
    }

    .nhc-hero-slider .swiper-slide::before,
    .nhc-hero-slider .nhc-slide-green::before,
    .nhc-hero-slider .nhc-slide-amber::before,
    .nhc-hero-slider .nhc-slide-blue::before,
    .nhc-hero-slider .nhc-slide-teal::before,
    .nhc-hero-slider .nhc-slide-burgundy::before {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.82) 100%
        );
    }

    .nhc-slide-content {
        padding: 0 1.5rem;
        max-width: 100%;
        text-align: center;
    }

    .nhc-slide-badge {
        justify-content: center;
    }

    .nhc-slide-buttons {
        justify-content: center;
    }

    .nhc-slide-features {
        justify-content: center;
    }

    .nhc-btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.88rem;
    }

    .nhc-hero-slider .swiper-button-next,
    .nhc-hero-slider .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 480px) {
    .nhc-hero-slider {
        min-height: 520px;
    }

    .nhc-hero-slider .swiper,
    .nhc-hero-slider .swiper-wrapper,
    .nhc-hero-slider .swiper-slide {
        min-height: 520px;
    }

    .nhc-slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nhc-btn {
        width: 100%;
        justify-content: center;
    }

    .nhc-slide-features {
        gap: 0.5rem;
    }

    .nhc-slide-feature {
        font-size: 0.78rem;
        padding: 0.28rem 0.7rem;
    }
}
