* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* 1. SCROLL SNAP & TEMEL AYARLAR */
html {
    height: 100%;
    overflow: hidden; 
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* 2. SLIDER BÖLÜMLERİ */
#sliderOne,
#sliderTwo {
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

/* 3. RESİMLER */
.full-screen-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

/* 4. OVERLAY (YAZILAR) */
.overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px; /* Indicatorların üzerini aç */
    background-color: rgba(0, 0, 0, 0.3);
}

.overlay-container a, 
.overlay-container button {
    pointer-events: auto;
}

/* 5. TYPOGRAPHY & ICONS */
.landing-title {
    font-family: "Josefin Sans", sans-serif;
    font-weight: bold;
    font-size: 36px;
    z-index: 3;
}

.slider-icons img {
    width: 32px;
    margin-bottom: 10px;
    height: auto;
}

.slider-icons a {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
}

/* 6. ÇİZGİ INDICATORS (GÜNCEL HALİ) */
.custom-indicators {
    z-index: 20 !important;
    bottom: 50px !important;
    display: flex;
    align-items: flex-end; /* Alt çizgiye hizala ki kalınlaşınca yukarı büyüsün */
    justify-content: center;
}

.custom-indicators button {
    width: 50px !important;       /* Çizgi Uzunluğu */
    height: 3px !important;       /* Pasif: İNCE Çizgi */
    border: none !important;      /* Kenarlık Yok */
    border-radius: 0 !important;  /* Köşeli Çizgi */
    background-color: #fff !important;
    margin: 0 5px !important;
    opacity: 0.5;                 /* Pasif Şeffaflık */
    padding: 0 !important;
    transition: all 0.3s ease;    /* Geçiş Efekti */
}

.custom-indicators .active {
    height: 4px !important;       /* Aktif: KALIN Çizgi */
    opacity: 1;                   /* Tam Beyaz */
}