* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Playfair Display", serif;
            font-optical-sizing: auto;
            font-weight: 550;
            font-style: normal;
        }


        /* 2. NAVBAR STİLLERİ */
        nav {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.925) 0%, rgba(0, 0, 0, 0) 100%);
            background-color: transparent;
            height: 150px;
            width: 100%;
            display: flex;
            align-items: center;
            padding: 0 50px;
            position: absolute; 
            top: 0;
            left: 0;
            z-index: 10;
            justify-content: flex-end; /* Linkleri sağa itmek için */
        }

        .logo-container {
          position: absolute;
          left: 50%;          
          transform: translateX(-50%);
          height: 100%;
          display: flex;
          align-items: center;
          z-index: 101;
        }

        .logo-container img {
         height: 135px;
         width: auto;
        }

        .logo {
            margin-top: 3vh;
            text-decoration: none;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        /* LİNKLER (Desktop) */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.2); /* Okunabilirlik için gölge */
            color: #ffffff;
            text-decoration: none;
            font-size: 22px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: rgba(170, 0, 0);
        }

        /* HAMBURGER MENÜ (Mobilde görünecek) */
        .hamburger {
            display: none; /* Masaüstünde gizli */
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            border-radius: 5px;
        }

        /* 3. RESPONSIVE (MOBİL) AYARLAR */
        @media screen and (max-width: 1200px) {

            .logo-container img {
             height: 110px; /* Mobilde daha kibar durması için küçültüyoruz */
             width: auto;
            }
            /* Logoyu mobilde sola alalım (İsteğe bağlı, ortada da kalabilir) */
            .logo {
                position: static;
                transform: none;
                margin-right: auto; /* Sağa yaslanan her şeyi iter */
            }

            nav {
                z-index: 9999;
                justify-content: space-between; /* Logo solda, hamburger sağda */
            }

            /* Linkleri gizle ve dikey menü yap */
            .nav-links {
                position: fixed;
                right: 0;
                top: 0; /* Navbar yüksekliği kadar aşağı */
                height: 100vh;
                background-color: #0a0a0a;
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.499) 100%);
                flex-direction: column;
                align-items: center;
                justify-content: center; /* Linkleri dikeyde ortala */
                width: 50%;
                display: flex;
                transform: translateX(100%); /* Ekran dışına it */
                transition: transform 0.3s ease-in-out;
                padding-top: 50px;
                z-index: 9999;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
            }

            .nav-links li {
                margin: 20px 0;
            }

            .hamburger {
                display: flex;
                position: fixed;
                z-index: 10000;  
                background-color: rgba(0, 0, 0, 0.15); 
                padding: 5px;
                border-radius: 5px;
            }
        }

        /* JavaScript ile eklenecek sınıf */
        .nav-active {
            transform: translateX(0%) !important;
        }

        html, body {
      position: relative;
      height: 100%;
      font-size: 14px;
      color: #fff;
      margin-top: 0;
      padding: 0;
      margin: 0;
      width: 100%;
      overflow-x: hidden;
    }

    .swiper {
      width: 100%;
      height: 100vh;
    }

    .swiper-slide {
      position: relative;
      margin: 0;
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none; /* Link alt çizgisini kaldır */
    }

    .swiper-slide img {
        display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slide-content {
    position: absolute; /* Resmin üzerine çıkar */
    top: 50%;           /* Yukarıdan %50 it */
    left: 50%;          /* Soldan %50 it */
    transform: translate(-50%, -50%); /* Tam merkeze oturt */
    
    text-align: center; /* Yazıları ortala */
    color: #fff;        /* Yazı rengi beyaz */
    z-index: 10;        /* Resmin üstünde kalması için */
    width: 80%;         /* Çok kenara yapışmaması için genişlik sınırı */
}

/* Başlık ve Açıklama Boyutları */
    .slide-content h2 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7); /* Okunabilirlik için gölge */
    margin-bottom: 10px;
    text-transform: uppercase;
}

    .slide-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

/* MOBİL UYUMU */
    @media screen and (max-width: 1200px) {
    .slide-content h2 {
        font-size: 1.8rem;
    }
}

/*----------------------------------2.section--------------------------------*/
/*----------------------------------2.section--------------------------------*/
/*----------------------------------2.section--------------------------------*/

/* 2. BÖLÜM GENEL AYARLARI */
.second-section {
    width: 100%;
    min-height: 100vh; /* 16:9 için yaptım bunu */
    background-color: #fff; /* bu kısma sonradan başka bir renk eklemek istersem diye */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    box-sizing: border-box;
    position: relative;
    z-index: 20; /* Üstteki slider'ın altında kalmaması için (gerekirse) */
}

/* GRID YAPISI (3 Sütunlu Düzen) */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 Eşit parça (Sol - Orta - Sağ) */
    gap: 50px; /* Sütunlar arası boşluk */
    max-width: 1400px; /* İçerik çok yayılmasın */
    width: 100%;
}

/* GÖRSEL AYARLARI */
.image-box img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Hafif gölge */
    display: block;
}

/* YAZI AYARLARI */
.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Yazıyı kendi kutusunda dikey ortala */
}

.text-content h1 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
    background-color: #000000;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;             /* Görünmez */
    transform: translateY(-50px); /* Kendi yerinden 50px yukarıda başla */
    transition: all 1s ease-out;  /* 1 saniyede yumuşakça geçiş yap */
}

.text-content h1.active {
    opacity: 1;             /* Görünür ol */
    transform: translateY(0);     /* Orijinal konumuna in */
}

.text-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #000000;
    text-transform: uppercase;
}

.text-content:nth-child(2) p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

.text-content:nth-child(3) p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    text-align: right;
}

/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */
@media screen and (max-width: 768px) {
    .second-section {
        height: auto; /* Mobilde yüksekliği serbest bırak */
        padding: 50px 20px;
    }

    .grid-container {
        grid-template-columns: 1fr; /* Sütunları alt alta diz */
        text-align: center; /* Yazıları mobilde ortala */
    }

    /* Mobilde sıralamayı değiştirmek istersen (Örn: Resim en üstte) */
    .image-box {
        margin-bottom: 30px;
    }
}


/*----------------------------------3.section--------------------------------*/
/*----------------------------------3.section--------------------------------*/


.third-section {
    display: flex; /* Yan yana dizilim için */
    width: 100%;
    min-height: 100vh; 
    background-color: #f9f9f9; 
    position: relative;
    z-index: 20;
}


.split-image {
    flex: 1.5; 
    height: 100vh; 
    position: relative;
}


.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-text {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;     
    padding: 60px;
    box-sizing: border-box;
}

/* Yazıyı sarmalayan iç kutu (Daha derli toplu durması için) */
.text-wrapper {
    max-width: 500px; /* Yazı çok fazla yayılmasın */
}

/* BAŞLIK VE METİN STİLLERİ */
.text-wrapper h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
}

.text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 35px;
}

.read-more-btn {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: rgba(170, 0, 0);
    border-color: rgba(170, 0, 0);
}

/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */
@media screen and (max-width: 768px) {
    .third-section {
        flex-direction: column; /* Yan yana değil, alt alta diz */
        min-height: auto; /* Zorunlu yüksekliği kaldır */
    }

    .split-image {
        width: 100%;
        height: 50vh; /* Mobilde görsel ekranın yarısı kadar olsun */
        flex: none; /* Esnekliği iptal et */
    }

    .split-text {
        width: 100%;
        flex: none;
        padding: 50px 30px; /* Mobilde padding'i biraz azalt */
        align-items: flex-start; /* Yazıyı mobilde sola dayalı başlat (isteğe bağlı) */
    }
    
    .text-wrapper h2 {
        font-size: 2rem; /* Mobilde başlığı küçült */
    }
}


/*----------------------------------4.section--------------------------------*/
/*----------------------------------4.section--------------------------------*/


.explore-section {
    width: 100%;
    min-height: 100vh;
    background-color: #303030;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Dikeyde ortala */
    overflow: hidden; /* Taşmaları gizle */
}

/* BAŞLIK ALANI */
.explore-header {
    padding-left: 10%; /* Sol taraftan hizalama */
    margin-bottom: 0px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #888;
    font-weight: 300;
}

/* --- YATAY KAYDIRMA ALANI (SİHİRLİ KISIM) --- */
.horizontal-scroll-container {
    display: flex; /* Kartları yan yana diz */
    padding-top: 50px;
    overflow-x: auto; /* Yatay kaydırmayı aç */
    gap: 60px;
    
    /* İŞTE BURASI ÖNEMLİ: */
    /* İlk kartın sayfanın ortasından başlaması için soldan %50 boşluk veriyoruz */
    padding-left: 30vw; 
    padding-bottom: 40px; /* Alt scroll çubuğu payı */
    
    scrollbar-width: none; /* Firefox için */
    -ms-overflow-style: none; /* IE/Edge için */
    cursor: grab; /* Tutup çekme imleci */
}

.horizontal-scroll-container.active {
    cursor: grabbing; 
    cursor: -webkit-grabbing;
    transform: scale(1); /* Tıklayınca titrememesi için */
}

/* Chrome/Safari için scrollbar gizleme */
.horizontal-scroll-container::-webkit-scrollbar {
    display: none;
}

/* KART TASARIMI */
.card-item {
    min-width: 300px; /* Kartın genişliği sabit olmalı */
    height: 400px;
    position: relative;
    display: flex;       /* Kutuyu esnek yap */
    align-items: center; /* İçeriği ortala */
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    flex-shrink: 0; /* Kartların sıkışmasını engeller */
}

@media (min-width: 769px) {
    .card-item:hover {
        transform: scale(1.02);
    }
}

.card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
    pointer-events: none;
}

.card-item img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none; /* Resme tıklanmasın, kutuya tıklansın */
}

/* --- MOBİL UYUMLULUK --- */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .explore-header {
        padding-left: 20px; /* Mobilde başlık daha sola yanaşsın */
    }

    .horizontal-scroll-container {
        /* Mobilde ortadan başlaması garip durabilir, 
           bu yüzden normal sola hizalı başlatıyoruz */
        padding-left: 40px; 
        padding-right: 20px;
        gap: 15px;
    }

    .card-item {
        min-width: 480px; /* Mobilde kartları biraz küçültelim */
        height: 400px;
    }

    .card-item img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;  
        height: 100%;
        object-fit: cover;
        -webkit-user-drag: none;
        pointer-events: none;
    }
}


/* --- FOOTER GENEL YAPISI --- */


.main-footer {
    width: 100%;
    min-height: 100vh; /* Tam ekran yüksekliği */
    background-color: #0a0a0a; /* Simsiyah'a yakın koyu gri */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Dikeyde ortala */
    align-items: center;
    padding: 50px;
    position: relative;
    box-sizing: border-box;
    
}

/* İÇERİK IZGARASI (GRID) */
.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Sütunlu yapı */
    gap: 60px; /* Kutular arası boşluk */
    width: 100%;
    max-width: 1000px; /* İçerik çok dağılmasın */
    margin-bottom: auto; /* Alt kısmı en aşağı itmek için */
    margin-top: auto;    /* Üst kısmı dengelemek için */
}

/* LINK KUTUSU TASARIMI */
.footer-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1); /* Çok silik çerçeve */
    transition: all 0.4s ease;
    border-radius: 5px;
}

/* Hover Efekti: Üzerine gelince parlasın ve yukarı kaysın */
.footer-item:hover {
    background-color: rgba(255,255,255,0.05);
    border-color: #fff;
    transform: translateY(-10px);
}

/* İKON TASARIMI */
.icon-box {
    font-size: 2.5rem;
    margin-right: 25px;
    color: #888;
    transition: color 0.3s ease;
}

.footer-item:hover .icon-box {
    color: #fff; /* Hover olunca ikon beyazlaşsın */
}

/* YAZI ALANI */
.text-box h3 {
    font-size: 1.2rem;
    font-weight: 750;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.text-box p {
    font-size: 0.9rem;
    color: #a4a4a4;
    transition: color 0.3s;
    font-family:Arial, Helvetica, sans-serif;
    font-weight: normal;
}

.footer-item:hover .text-box p {
    color: #ccc;
}

/* --- ALT KISIM (COPYRIGHT) --- */
.footer-bottom {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin-top: 50px;
}

/* İnce Çizgi */
.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #555, transparent); /* Ortası belirgin, kenarları silik çizgi */
    margin-bottom: 30px;
}

.urgco {
    font-family: "amandine", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fafafa;
    font-size: 1.3rem;
}

/* --- MOBİL UYUMLULUK --- */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* Mobilde tek sütuna düş */
        gap: 20px;
    }

    .footer-item {
        padding: 20px; /* Mobilde kutuları küçült */
    }

    .icon-box {
        font-size: 1.8rem;
    }

    .main-footer {
        padding: 30px 20px;
    }
}

/* FOOTER LOGO AYARLARI */
.footer-logo {
    display: inline-block;
    margin-bottom: 50px; /* İkonlarla arasına boşluk */
    transition: transform 0.3s ease;
}

.footer-logo img {
    height: 120px; /* Logonun yüksekliği (İsteğine göre artır/azalt) */
    width: auto;   /* Genişlik orantılı kalsın */
    display: block;
}

/* Mouse üzerine gelince hafif büyüsün */
.footer-logo:hover {
    transform: scale(1.05);
}

/* --- MOBİL İÇİN DÜZELTME --- */
@media screen and (max-width: 768px) {
    .footer-logo img {
        height: 80px; /* Mobilde logoyu biraz küçültelim */
    }
    
    .footer-logo {
        margin-bottom: 30px; /* Mobilde boşluğu azaltalım */
    }
}