/* ============================================
   İZMİR TENTECİ - SLIDER DÜZGÜN CSS
   ============================================ */

/* ===== SLIDER TEMEL ===== */
.main-slide-area {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.main-slide .owl-stage-outer {
    overflow: hidden;
}

.main-slide .owl-stage {
    display: flex;
}

.main-slide .owl-item {
    min-height: 100vh;
}

/* ===== BACKGROUND ===== */
.background-area {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.background-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.background-area .mobile {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

/* ===== İÇERİK ===== */
.item-area {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 30px 80px;
}

.text {
    max-width: 650px;
}

.text h1,
.text h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.25;
    color: #fff !important;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.text p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.text p strong {
    color: #D4AF37;
}

/* ===== BUTONLAR - ÇERÇEVESİZ ===== */
.btn-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.btn-box .btn-primary {
    background: #D4AF37 !important;
    color: #000 !important;
    padding: 15px 30px !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    outline: none !important;
    transition: all 0.3s;
    animation: none !important;
}

.btn-box .btn-primary:hover {
    background: #b8962d !important;
    color: #fff !important;
    box-shadow: none !important;
}

.btn-box .btn-primary i {
    margin-left: 8px;
    position: static !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    line-height: normal !important;
}

.btn-box .btn-outline-light {
    background: transparent !important;
    color: #fff !important;
    padding: 14px 28px !important;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    outline: none !important;
    transition: all 0.3s;
}

.btn-box .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
}

/* ===== NAVİGASYON OKLARI ===== */
.main-slide .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.main-slide .owl-nav button {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
}

.main-slide .owl-nav button:hover {
    background: rgba(212, 175, 55, 0.8) !important;
    border-color: #D4AF37 !important;
}

/* ===== DOT BUTONLARI - KÜÇÜK VE MİNİMAL ===== */
.main-slide .owl-dots,
.main-slide.owl-carousel .owl-dots {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 8px !important;
    z-index: 10 !important;
    text-align: center;
}

.main-slide .owl-dots .owl-dot,
.main-slide.owl-carousel .owl-dots .owl-dot {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.4) !important;
    border: none !important;
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 0 2px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    outline: none;
}

/* Theme default span'ını gizle ve kendi stilimizi uygula */
.main-slide .owl-dots .owl-dot span {
    display: none !important;
}

.main-slide .owl-dots .owl-dot:hover {
    background: rgba(255, 255, 255, 0.7) !important;
}

.main-slide .owl-dots .owl-dot.active {
    background: #D4AF37 !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {

    .text h1,
    .text h2 {
        font-size: 34px;
    }

    .text p {
        font-size: 15px;
    }
}

/* ===== MOBİL ===== */
@media (max-width: 768px) {
    .background-area .mobile {
        display: block;
    }

    .item-area {
        padding: 100px 20px 80px;
    }

    .text h1,
    .text h2 {
        font-size: 26px;
    }

    .text p {
        font-size: 14px;
    }

    .btn-box {
        flex-direction: column;
    }

    .btn-box .btn-primary,
    .btn-box .btn-outline-light {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .main-slide .owl-nav {
        display: none;
    }

    .main-slide .owl-dots {
        bottom: 20px;
    }

    .main-slide .owl-dots .owl-dot {
        width: 6px;
        height: 6px;
    }

    .main-slide .owl-dots .owl-dot.active {
        width: 20px;
    }
}

/* ===== KÜÇÜK MOBİL ===== */
@media (max-width: 480px) {

    .text h1,
    .text h2 {
        font-size: 22px;
    }

    .text p {
        font-size: 13px;
    }

    .btn-box .btn-primary,
    .btn-box .btn-outline-light {
        padding: 12px 20px !important;
        font-size: 11px;
    }
}