/* ==========================================================================
   DENEYİM DETAY SAYFASI (SPA, GASTRONOMİ VB.) ÖZEL STİLLERİ
   ========================================================================== */

/* GENEL KONTEYNER */
.premium-experience-section {
    padding: 120px 20px 80px; /* Navbar altında kalmaması için üstten boşluk */
    background-color: #0d0d0d;
    min-height: 100vh;
}

/* SLIDER ALANI (ORTALI VE SINIRLI) */
.exp-slider-wrapper {
    position: relative;
    max-width: 1000px; /* Tam kaplamaması için sınırlandı */
    width: 95%;
    margin: 0 auto 60px;
    border-radius: 4px;
    border: 1px solid rgba(201, 162, 77, 0.2); /* Senin altın renginden hafif çerçeve */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.exp-slider {
    position: relative;
    height: 500px;
    background: #000;
}

.exp-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.exp-slide.active {
    opacity: 0.85; /* Senin hero videonun opaklığına yakın */
}

/* SLIDER BUTONLARI */
.exp-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #c9a24d;
    color: #c9a24d;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.exp-slider-btn:hover {
    background: #c9a24d;
    color: #0d0d0d;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* ANA METİN İÇERİK ALANI */
.exp-content-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.exp-title {
    color: #fff;
    font-size: 2.8rem;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.title-divider {
    width: 60px;
    height: 2px;
    background: #c9a24d;
    margin: 0 auto 30px;
}

.exp-description {
    color: #aaa;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 70px;
    font-weight: 300;
}
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* KART */
.offer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    transition: all 0.35s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* hover glow efekti */
.offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201,162,77,0.15), transparent 70%);
    opacity: 0;
    transition: 0.4s;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(201,162,77,0.5);
}

/* ICON */
.offer-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #c9a24d, #a8842f);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #111;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* TEXT */
.offer-card h4 {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 500;
}

/* MOBİL */
@media(max-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .offer-card {
        padding: 20px 10px;
    }

    .offer-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .offer-card h4 {
        font-size: 0.85rem;
    }
}

/* NELER SUNUYORUZ - ALT BAŞLIK GÜNCELLEMESİ */
.offers-main-title {
    color: #c9a24d; /* Başlıktan farklı olarak direkt altın rengiyle vurguladık */
    font-size: 1.4rem; /* Ana başlıktan (2.8rem) belirgin şekilde daha küçük */
    text-transform: uppercase;
    font-weight: 400; /* Biraz daha okunabilir bir kalınlık */
    letter-spacing: 5px; /* Harf arasını açarak daha geniş ve modern bir hava kattık */
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Alt başlığın altındaki çizgiyi de başlığa göre daralttık */
.premium-offers-wrapper .title-divider {
    width: 40px; 
    height: 1px; /* Daha ince bir çizgi */
    background: rgba(201, 162, 77, 0.5); /* Daha hafif bir görünüm */
    margin: 0 auto 40px;
}