/* --- GENEL AYARLAR --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif;  color: #fff; overflow-x: hidden; }

/* --- DEĞİŞKENLER (BÖLÜNMÜŞ EKRAN İÇİN) --- */
:root {
    --gecis-hizi: 0.7s;
    --genis-alan: 75%;
    --dar-alan: 25%;
}

/* --- NAVBAR --- */
#ana-navbar { position: absolute; top: 0; width: 100%; z-index: 1000; padding: 30px 5%; }
.navbar-icerik { display: flex; justify-content: space-between; align-items: center; }
.ana-logo { font-size: 24px; font-weight: 900; }
.alt-logo { color: #ff4d29; font-size: 11px; margin-top: -5px; font-weight: bold; }
.menu-linkleri { display: flex; gap: 30px; }
.menu-linkleri a { color: #fff; text-decoration: none; transition: 0.3s; }
.menu-linkleri a:hover, .menu-linkleri a.aktif { color: #ff4d29; }

/* --- HERO BÖLGESİ --- */
#hero-bolgesi {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('arkaplan.jpg');
    background-size: cover; background-position: center;
    display: flex; align-items: center; padding: 0 10%;
}
.ana-baslik { font-size: 4rem; line-height: 1.1; margin: 15px 0; max-width: 800px; }
.ust-etiket { color: #ff4d29; font-weight: bold; font-size: 1.2rem; }
.oynatma-yuvarlagi { width: 80px; height: 80px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; margin-left: auto; }
.oynatma-yuvarlagi:hover { transform: scale(1.1); }
.oynatma-ucgeni { border-left: 20px solid #ff4d29; border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 5px; }

/* --- BÖLÜNMÜŞ EKRAN (SENİN KODLARIN) --- */
#ana-kapsayici { display: flex; width: 100%; height: 100vh; background-color: #000; }
.bolum { position: relative; width: 50%; height: 100%; display: flex; align-items: center; justify-content: center; transition: width var(--gecis-hizi) ease-in-out; overflow: hidden; }
.bolum::before { content: ""; position: absolute; width: 100%; height: 100%; background-size: cover; background-position: center; transition: 0.7s; z-index: 1; }

.sol-taraf::before { background-image: linear-gradient(rgba(0,0,0,0.4), rgba(190, 67, 67, 0.4)), url('../images/antalya/ant1.jpg'); }
.sag-taraf::before { background-image: linear-gradient(rgb(42 34 89 / 40%), rgb(3 3 71 / 40%)), url(../images/homemarmariss.jpg); }

.icerik-alani { position: relative; z-index: 2; text-align: center; color: white; }
.baslik { font-size: 3.5vw; text-transform: uppercase; letter-spacing: 5px; margin-bottom: 25px; text-shadow: 2px 2px 15px rgba(0,0,0,0.7); }
.aksiyon-butonu { display: inline-block; padding: 15px 40px; border: 2px solid #fff; color: #fff; text-decoration: none; font-weight: bold; text-transform: uppercase; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(5px); transition: 0.3s; }
.aksiyon-butonu:hover { background: #fff; color: #000; }

/* --- HOVER ETKİLERİ --- */
.sol-aktif .sol-taraf { width: var(--genis-alan); }
.sol-aktif .sag-taraf { width: var(--dar-alan); }
.sol-aktif .sol-taraf::before { transform: scale(1.1); }
.sol-aktif .sag-taraf::before { filter: blur(10px); }

.sag-aktif .sag-taraf { width: var(--genis-alan); }
.sag-aktif .sol-taraf { width: var(--dar-alan); }
.sag-aktif .sag-taraf::before { transform: scale(1.1); }
.sag-aktif .sol-taraf::before { filter: blur(10px); }

/* --- FOOTER --- */
#ana-footer { background: #f8f9fa; color: #333; padding: 60px 10%; }
.footer-kapsayici { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-sutun h3 { margin-bottom: 20px; color: #000; }
.footer-sutun ul { list-style: none; }
.footer-sutun ul li a { color: #666; text-decoration: none; display: block; margin-bottom: 10px; }

/* --- MODAL --- */
#video-penceresi { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 2000; align-items: center; justify-content: center; }
.modal-icerik { position: relative; width: 80%; max-width: 900px; aspect-ratio: 16/9; }
#video-frame { width: 100%; height: 100%; }
.kapat-x { position: absolute; top: -50px; right: 0; color: #fff; font-size: 40px; cursor: pointer; }

/* --- MOBİL --- */
@media (max-width: 768px) {
    .ana-baslik { font-size: 2.2rem; }
    .bolum { width: 50% !important; }
    .baslik { font-size: 1.5rem; }
}


/* --- S.S.S ALANI STİLLERİ --- */
#sss-bolumu {
    background-color: #ffffff;
    padding: 30px 0;
    width: 100%;
}

.sss-kapsayici {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.sss-ana-baslik {
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.sss-oge {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.sss-soru {
    padding: 20px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background 0.3s;
}

.sss-soru:hover {
    background-color: #f9f9f9;
}

.sss-ikon {
    font-size: 24px;
    color: #ff4d29; /* Sitenin ana turuncu rengiyle uyumlu */
    transition: transform 0.3s;
}

.sss-cevap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.sss-cevap p {
    padding: 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
}

/* Açık durumdaki stiller */
.sss-oge.aktif .sss-cevap {
    max-height: 200px; /* İçeriğe göre ayarlanır */
}

.sss-oge.aktif .sss-ikon {
    transform: rotate(45deg); /* + ikonunu x yapar */
}

.sss-oge.aktif .sss-soru {
    color: #ff4d29;
    
}



/* learn buton */
.learn-color a:hover{
    color: rgb(0, 0, 0) !important;
}
.learn-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #ff5e14, #ff8c42);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 94, 20, 0.3);
}

/* Hover efekti */
.learn-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(255, 94, 20, 0.4);
}

/* Işık geçiş animasyonu */
.learn-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -7;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.learn-btn:hover::before {
    left: 130%;
}


/*          KAYMA ANİMASYONU       */

/* Bu kısım animasyonun nasıl hareket edeceğini belirler */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px); /* Aşağıdan başla */
    }
    to {
        opacity: 1;
        transform: translateY(0);    /* Kendi yerine gel */
    }
}

/* Bu sınıfı hangi yazıya eklersen o yazı kayarak gelir */
.kayma-efekti {
    animation: slideUp 0.6s ease-out forwards;
}
 
/*          KAYMA ANİMASYONU   BİTİŞ     */

/*    S.S.S. SAYFASI İÇİN     */

.ssspage {
    padding: 0 20px;

}

/* Diğer stillerle karışmaması için ID bazlı seçim */
#faq-section-unique {
        max-width: 800px;
        margin: 40px auto;
        font-family: sans-serif;
    }

    #faq-section-unique .faq-title {
        text-align: center;
        margin-bottom: 30px;
        color: #333;
    }

    #faq-section-unique .faq-item {
        background: #fff;
        border: 1px solid #ddd;
        margin-bottom: 10px;
        border-radius: 4px;
        overflow: hidden; /* Taşmaları engelle */
    }

    /* FARE ÜZERİNE GELDİĞİNDE (HOVER) */
#faq-section-unique .faq-item:hover {
    /* Hafif yukarı kalkma efekti */
    transform: translateY(-3px); 
    
    /* Turuncu kenarlık vurgusu */
    border-color: #ff6633; 
    
    /* Daha belirgin ve derin gölge */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
    
    /* Arka planı çok hafif gri yaparak derinlik katabilirsin (Opsiyonel) */
    background-color: #ffffff; 
}

/* Soru metninin hover olunca rengini de değiştirebilirsin */
#faq-section-unique .faq-item:hover .faq-question span {
    color: #ff6633;
    transition: color 0.3s ease;
}

    #faq-section-unique .faq-question {
        width: 100%;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        border: none;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        text-align: left;
        outline: none;
    }

    #faq-section-unique .faq-icon {
        font-size: 24px;
        color: #ff6633;
        transition: transform 0.3s ease; /* DÖNME EFEKTİ BURASI */
        display: inline-block;
        line-height: 1;
    }

    /* AÇILDIĞINDA + İKONUNU DÖNDÜR */
    #faq-section-unique .faq-item.active .faq-icon {
        transform: rotate(45deg);
    }

    /* AÇILMA ANİMASYONU */
    #faq-section-unique .faq-answer {
    max-height: 0; /* Başlangıçta kapalı */
    overflow: hidden;
    /* 0.5s hızı idealdir, çok yavaş istersen 0.8s yapabilirsin */
    transition: max-height 0.4s ease-in-out; 
    background-color: #f9f9f9;
}

    #faq-section-unique .faq-item.active .faq-answer {
        max-height: 500px; /* Açıldığında alabileceği max yükseklik */
    }

    #faq-section-unique .faq-content {
        padding: 20px;
        color: #666;
        line-height: 1.5;
        border-top: 1px solid #eee;
    }

    /*    S.S.S. SAYFASI İÇİN    BİTİŞ  */



    /*          CARD YAPISI BHİTİŞ          */

/* CSS Reset and Container */
.travel-tour-section-2026 {
    padding: 20px 20px;
    background-color: #fcfcfc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tour-grid-container {
    display: grid;
    /* Responsive: Adjust columns based on screen width */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.tour-card-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.tour-card-item:hover {
    transform: translateY(-8px); /* Lift effect on hover */
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Image Area */
.tour-img-wrap {
    position: relative;
    height: 220px;
}

.tour-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-location-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6633; /* Corporate Orange */
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
    z-index: 2;
}

/* Info Area */
.tour-details-wrap {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-duration-text {
    color: #ff6633;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.tour-main-title {
    font-size: 20px;
    color: #222;
    margin: 5px 0 10px 0;
    font-weight: 700;
}

.tour-sub-info {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

/* Specs & Perks */
.tour-stats-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: #444;
}

.tour-perks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.tour-perks-list span {
    background: #fdf2ee;
    color: #ff6633;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* Button */
.tour-view-btn {
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    background: #ff6633;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    cursor: pointer;
    transition: 0.3s;
    margin-top: auto;
}

.tour-view-btn-cont {
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    background: #25D366;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    cursor: pointer;
    transition: 0.3s;
    margin-top: auto;
}

.tour-view-btn:hover {
    background: #333; /* Changes to black on hover */
}
.tour-view-btn-cont:hover {
    background: #333; /* Changes to black on hover */
}

/* Responsive Mobile Adjustments */
@media (max-width: 480px) {
    .tour-grid-container {
        grid-template-columns: 1fr;
    }

    .tour-card-item .container.mt-2 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .tour-card-item .container.mt-2 .row {
        margin-left: 0;
        margin-right: 0;
        gap: 8px;
        justify-content: center !important;
    }

    .tour-card-item .pm0imp {
        flex: 0 0 calc(50% - 4px);
        max-width: calc(50% - 4px);
        min-width: 0;
    }

    .tour-view-btn,
    .tour-view-btn-cont {
        min-height: 40px;
        padding: 9px 6px;
        font-size: 12px;
        border-radius: 7px;
    }

    .tour-view-btn-cont i {
        margin-right: 5px !important;
        flex: 0 0 auto;
    }
}

@media (max-width: 340px) {
    .tour-card-item .pm0imp {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tour-view-btn,
    .tour-view-btn-cont {
        font-size: 13px;
    }
}



/*          CARD YAPISI BHİTİŞ          */


@media (min-width: 991px) {
    .nav-card { /* Eğer navbar sınıfın farklıysa burayı değiştir (örn: .nav-container) */
        background-color: #000000 !important;
        transition: background-color 0.3s ease; /* Geçişin yumuşak olması için */
       
    }
    .cont-card {
        margin-top: 14vh;
    }
}

        /* padding margin 0 komut */

.pm0imp{
    padding: 0 !important;
    margin: 0 !important ;


}

 /* text renk komut */

.texcolgr{
    color: #999999 !important;
}


/* resm için */

.img-custom-box {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 10px; /* Köşeleri biraz yumuşatmak modern durur */
    
    /* MOBİL İÇİN: Ekran küçükken resmin yüksekliği */
    min-height: 300px; 
}

@media (min-width: 768px) {
    .img-custom-box {
        /* MASAÜSTÜ İÇİN: Yanındaki yazı içeriği kadar uzaması için */
        min-height: 400px; 
    }
}




/* butani animasyonu */
.butani {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;


}

/* Hover animasyonu */
.butani:hover {
  animation: butani 0.6s ease forwards;
}

@keyframes butani {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  }
  50% {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
  }
  100% {
    transform: translateY(0) scale(1.03);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  }
}

/* Parlama efekti */
.butani::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.2)
  );
  transform: skewX(-25deg);
}

.butani:hover::after {
  animation: butani-shine 0.8s ease;
}

@keyframes butani-shine {
  100% {
    left: 125%;
  }
}



/*-------------------------- detay paralax ---------------------------------*/

/* Paralaks Efektinin Ana Sınıfı */
.parallax-section-unique {
    position: relative;
    background-attachment: fixed !important; /* Resmin arkada çakılı kalmasını sağlar */
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    /* Mobilde resmin çok küçük kalmaması için min-height */
    min-height: 400px; 
}

/* Mevcut overlay ile karışmaması için özel karartma */
.parallax-overlay-unique {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45); /* %45 karartma */
    z-index: 1;
}

/* İçeriği (Video Butonunu) Overlay'in üzerine çıkarır */
.parallax-section-unique .container {
    position: relative;
    z-index: 2;
}

/* MOBİL CİHAZLAR İÇİN OPTİMİZASYON */
/* Bazı mobil tarayıcılar fixed background'u desteklemez. 
   O yüzden mobilde normal akışa döndürüyoruz ki hata oluşmasın. */
@media (max-width: 767px) {
    .parallax-section-unique {
        background-attachment: scroll !important;
    }
}

/*-------------------------- detay paralax ---------------------------------*/


/* tour-card-page sayfa tasarımı */ 

.tur-nav-tabs {
            border-bottom: 2px solid #eee;
        }

        .tur-nav-link {
            border: none !important;
            color: #666 !important;
            font-weight: 500;
            padding: 12px 25px !important;
            transition: all 0.3s ease;
        }

        .tur-nav-link.active {
            color: #f15d30 !important;
            background: transparent !important;
            border-bottom: 3px solid #f15d30 !important;
        }

        /* Kart ve Animasyonlar */
        .tur-tab-pane {
            padding-top: 25px;
        }

        .tur-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 15px #f15d30;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
            height: 100%; /* Kartların boyunu eşitler */
        }

        .tur-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        /* Geçiş Animasyonu */
        .fade {
            transition: opacity 0.3s linear, transform 0.4s ease-out;
            transform: translateY(10px);
        }
        .fade.show {
            transform: translateY(0);
        }

/* SOSYAL MEDYA İKONLARI HOVER RENKLERİ */

.sociala-twitter a:hover {
    background-color: #000000 !important; /* Twitter (X) Siyahı */
    border-color: #000000 !important;
    color: #fff !important;
}

.sociala-facebook a:hover {
    background-color: #1877F2 !important; /* Facebook Mavisi */
    border-color: #1877F2 !important;
    color: #fff !important;
}

.sociala-instagram a:hover {
    background-color: #ff0000 !important; /* Instagram Kırmızısı/Pembesi */
    border-color: #ff0000 !important;
    color: #fff !important;
}

.sociala-whatsapp a:hover {
    background-color: #25D366 !important; /* WhatsApp Yeşili */
    border-color: #25D366 !important;
    color: #fff !important;
}




/*footer içindeki yazıların üzerine gelince turunacu yapma*/

.foot a:hover, .foot a:hover span {
    
    color: #f15d30 !important;
    
}
