/* Açılış Videosu */
.intro-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.intro-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Site İçeriği */
#siteContent {
    display: none;
}

/* Tüm Sayfaya Arka Plan Resmi Eklemek */
body {
    background-size: cover; /* Tüm ekranı kaplasın */
    background-position: center; /* Ortada hizalansın */
    background-attachment: fixed; /* Sabit kalsın, kaydırıldığında hareket etmesin */
    background-repeat: no-repeat; /* Tekrar etmesin */
    color: #fff; /* Metinlerin okunaklı olması için beyaz renk */
    font-family: 'Poppins', sans-serif; /* Yumuşak ve modern font */
}

/* İçeriklerin daha belirgin olması için hafif saydam bir arkaplan */
.main-content {
    background: rgba(0, 0, 0, 0.7); /* Saydam siyah arkaplan */
    padding: 20px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 50px auto;
}

/* Genel Sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Header ile Çakışmayı Önleme */
body {
    padding-top: 80px; /* Header yüksekliği kadar boşluk bırak */
}

/* Banner Stilleri */
.banner {
    width: 100vw; /* Sayfanın tam genişliği */
    max-width: 1920px; /* Maksimum genişlik */
    height: auto; /* Yüksekliği resim oranına göre ayarla */
    overflow: hidden; /* Taşan kısımları gizle */
    margin: 0 auto; /* Ortalamak için */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Banner Görseli */
.banner img {
    width: 100%; /* Banner'ı tam genişliğe yay */
    max-height: 500px; /* Yüksekliği 500px ile sınırla */
    object-fit: cover; /* Oranı koruyarak tam oturt */
    display: block;
}
/* Modern Line Stili */
.modern-line {
    width: 80px; /* Çizgi uzunluğu */
    height: 4px; /* Çizgi kalınlığı */
    background: linear-gradient(to right, #21202E, #FFD700); /* Gradient (koyu ve kapalı sarı) */
    border-radius: 2px; /* Hafif yuvarlatılmış kenarlar */
    margin: 10px 0; /* Üst ve alt boşluk */
    transition: width 0.3s ease; /* Hover animasyonu */
}

/* Hover Efekti */
.modern-line:hover {
    width: 120px; /* Üzerine gelince genişliği artır */
}
/* Uzun Modern Line Stili */
.long-modern-line {
    width: 70%; /* Çizgi uzunluğu (Sayfanın %70'ini kaplayacak) */
    height: 6px; /* Çizgi kalınlığı */
    background: linear-gradient(to right, #21202E, #FFD700); /* Gradient (Koyu + Kapalı Sarı) */
    border-radius: 3px; /* Hafif yuvarlatılmış kenarlar */
    margin: 40px auto; /* Sayfanın ortasına hizalama */
    transition: width 0.4s ease-in-out; /* Animasyon efekti */
}

/* Hover Efekti */
.long-modern-line:hover {
    width: 80%; /* Üzerine gelince çizgi genişlesin */
}
/* Genel Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Banner Alt Kısmı */
.tourism-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto; /* Ortaya almak için */
    gap: 30px;
}

/* Sol Taraftaki Metin */
.tourism-text {
    width: 50%;
    color: rgb(46, 46, 46);
    font-family: 'Poppins', sans-serif;
}

.tourism-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #8b8b8b; /* Kapalı Sarı */
}

/* Bilgi Listesi */
.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}

/* Listeye Sıralı Animasyon */
.info-list li:nth-child(1) { animation-delay: 0.3s; }
.info-list li:nth-child(2) { animation-delay: 0.6s; }
.info-list li:nth-child(3) { animation-delay: 0.9s; }
.info-list li:nth-child(4) { animation-delay: 1.2s; }
.info-list li:nth-child(5) { animation-delay: 1.5s; }

/* Sağ Taraftaki Video */
.tourism-video {
    position: relative;
    width: 50%;
    height: 300px; /* Videonun yüksekliği */
    overflow: hidden;
    border-radius: 10px; /* Hafif yuvarlak köşeler */
}

/* Videoya Gölge Efekti */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Hafif Siyah Gölge */
    z-index: 1;
    border-radius: 10px;
}

/* Video Ayarları */
.tourism-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Videoyu sığdır */
    position: relative;
    z-index: 0;
}

/* Fade In Animasyonu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .tourism-section {
        flex-direction: column;
        text-align: center;
    }

    .tourism-text, .tourism-video {
        width: 100%;
    }
}
/* Videolar Köşesi */
.video-section {
    text-align: center;
    padding: 50px 0;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.video-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #727272; /* Kapalı Sarı */
}

/* Video Konteyneri */
.video-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Video Kartları */
.video-card {
    position: relative;
    width: 30%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5); /* Gölge efekti */
}

/* Video Üzerine Hafif Gölge */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Hafif Siyah Gölge */
    z-index: 1;
    border-radius: 10px;
}

/* Video Ayarları */
.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .video-container {
        flex-direction: column;
        gap: 15px;
    }

    .video-card {
        width: 100%;
        height: 200px;
    }
}
/* Galeri Bölümü */
.gallery-section {
    text-align: center;
    padding: 50px 0;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.gallery-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #969696; /* Kapalı Sarı */
}

/* Galeri Konteyner */
.gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Galeri Wrapper */
.gallery-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

/* Galeri İçeriği */
.gallery {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

/* Galeri Kartları */
.gallery-card {
    position: relative;
    width: 100%;
    max-width: 300px; /* Kart genişliği */
    height: 200px; /* Kart yüksekliği */
    background: #21202E; /* Koyu arka plan */
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.7); /* Gölge efekti */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

/* Hover'da Kart Efekti */
.gallery-card:hover {
    transform: scale(1.05);
}

/* Kart İçindeki Resimler */
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Galeri Butonları */
.gallery-btn {
    background: rgba(33, 32, 46, 0.8); /* Hafif Koyu Renk */
    color: white;
    border: none;
    padding: 15px;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.left-btn { left: -50px; }
.right-btn { right: -50px; }

.gallery-btn:hover {
    background: #929292; /* Hover'da sarıya dönüş */
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .gallery-card {
        max-width: 250px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .gallery-wrapper {
        width: 100%;
    }

    .gallery {
        gap: 15px;
    }

    .gallery-card {
        max-width: 200px;
        height: 160px;
    }

    .gallery-btn {
        font-size: 20px;
        padding: 10px;
    }

    .left-btn { left: -10px; }
    .right-btn { right: -10px; }
}
/* Hizmetler Bölümü */
.services-section {
    text-align: center;
    padding: 50px 0;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.services-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #FFD700; /* Kapalı Sarı */
}

/* Hizmetler Konteyner */
.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Hizmet Kartları */
.service-card {
    background: #21202E; /* Kart arka plan rengi */
    width: 30%;
    height: 350px;
    border-radius: 12px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.6); /* Gölge efekti */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

/* Kart Resmi */
.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

/* Kart Başlığı */
.service-card h3 {
    font-size: 22px;
    margin: 15px 0;
    color: #FFD700; /* Kapalı Sarı */
}

/* Kart Açıklaması */
.service-card p {
    font-size: 16px;
    line-height: 1.5;
}

/* Hover Efekti */
.service-card:hover {
    transform: scale(1.05);
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .service-card {
        width: 45%; /* Tabletlerde 2 kart yan yana */
    }
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 90%; /* Mobilde tam genişlik */
    }
}
/* WhatsApp İkonu */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    z-index: 1000;
}

.whatsapp-icon img {
    width: 30px;
    height: 30px;
}

/* Hover ve Animasyon */
.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* Mobil Uyumlu */
@media (max-width: 768px) {
    .whatsapp-icon {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-icon img {
        width: 25px;
        height: 25px;
    }
}
