/* [GENEL AYARLAR] */
:root {
    --accent-pink: #F4A7BA; /* Parlak Pembe */
    --transition-slow: all 0.8s ease;
}

body {
    background-color: #0F172A;
    margin: 0; padding: 0;
    font-family: 'Segoe UI', sans-serif;
    color: white;
    overflow-x: hidden;
}

/* [VİDEO ALANI VE HİZALAMA] */
.bolum2 {
    position: relative;
    width: 100%;
    height: 85vh; /* Video yüksekliği ekranın %85'i */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/*Giriş kutusundaki animasyonlu yazı düzenlemesi*/
.modal-body h2.animate__animated {
    color: #F4A7BA;          /* pembe ton*/
    font-size: 2.5rem;       /* Yazıyı belirgin şekilde büyütür */
    font-weight: bold;       /* Kalınlaştırarak vurguyu artırır */
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2); /* Hafif derinlik katar */
    margin-bottom: 20px;     /* Alttaki yazıyla arasını açar */
    text-align: center;      /* Tam merkeze hizalar */
    font-family: 'Courier New', Courier, monospace; /* Piksel havası için monospace font */
}
.video-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.video-container video {
    width: 100%; height: 100%;
    object-fit: cover; /* Kedinin tam görünmesini sağlar */
    opacity: 0.6;
}

/* [YAZI STİLLERİ] */
.pink-glow-text {
    color: var(--accent-pink) !important;
    text-shadow: 0 0 15px rgba(244, 167, 186, 0.6);
}

.center-title {
    font-size: 4rem; /* Senin istediğin boyut */
    font-weight: 800;
    letter-spacing: 12px;
    text-align: center;
    margin: 0;
}

/* NAVBAR DÜZENLEME */
.glass-nav {
    background: rgba(15, 23, 42, 0.7) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(244, 167, 186, 0.1);
    padding: 18px 0;
}

.navbar-brand {
    text-decoration: none !important;
}

.menu-link {
    color: white !important;
    text-decoration: none !important; /* Alt çizgiler kaldırıldı */
    margin: 0 15px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    opacity: 0.6;
    transition: var(--transition-soft);
}

.menu-link:hover, .menu-link.active {
    color: var(--accent-pink) !important;
    opacity: 1;
    text-decoration: none !important;
    text-shadow: 0 0 10px rgba(244, 167, 186, 0.5);
}

/* [FOOTER TAM GENİŞLİK - Kutu Görünümü Kaldırıldı] */
.bolum3 {
    width: 100%; /* Ekranı tam kaplaması için */
    margin: 0; padding: 0;
}

.full-glass-footer {
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(244, 167, 186, 0.1);
    padding: 60px 0; /* İç boşluk */
    width: 100%;
}

.footer-quote {
    font-size: 0.9rem; /* Yazı boyutu senin istediğin gibi küçük */
    font-family: 'Courier New', monospace;
    opacity: 0.8;
    line-height: 1.6;
}

.footerbilgi {
    font-size: 0.7rem;
    font-family: 'Courier New', monospace;
    opacity: 0.4;
    margin: 10px 0;
}

/* [LİNKLER VE İKONLAR] */
.soft-link {
    color: white; text-decoration: none; font-size: 0.8rem;
    opacity: 0.5; transition: 0.8s;
}

.soft-link:hover { color: var(--accent-pink); opacity: 1; }

.social-box { display: flex; justify-content: center; gap: 20px; }
.social-icon { color: white; opacity: 0.5; transition: 0.8s; }
.social-icon:hover { color: var(--accent-pink); opacity: 1; transform: translateY(-3px); }

/* [MODAL TASARIMI] */
.glass-card {
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(244, 167, 186, 0.2) !important;
    border-radius: 20px;
    color: white;
}

.btn-custom {
    background: transparent; border: 1px solid var(--accent-pink);
    color: var(--accent-pink); padding: 5px 25px; border-radius: 50px;
    transition: 0.8s;
}


/* [CSS AÇIKLAMA: FOOTER TAM GENİŞLİK TASARIMI] */
.full-glass-footer {
    background: rgba(15, 23, 42, 0.6) !important; /* Şeffaf koyu zemin */
    backdrop-filter: blur(10px); /* Arkayı yumuşatma efekti */
    border-top: 1px solid rgba(244, 167, 186, 0.1);
    padding: 60px 0;
    width: 100%; /* Ekranı tam kaplaması için */
}

/* [CSS AÇIKLAMA: SOSYAL MEDYA İKONLARI YUMUŞATMA] */
.social-box { 
    display: flex; 
    justify-content: center; 
    gap: 25px; 
}

.social-icon { 
    color: white; 
    opacity: 0.5; 
    font-size: 1.6rem;
    /* 0.8 saniyelik çok yumuşak geçiş efekti */
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); 
    text-decoration: none;
}

/* Üzerine gelindiğinde parlak pembe glow efekti */
.social-icon:hover { 
    color: #F4A7BA; /* Senin parlak pembe rengin */
    opacity: 1; 
    transform: translateY(-5px); /* Hafif yukarı süzülme */
    text-shadow: 0 0 10px rgba(244, 167, 186, 0.6);
}

/* Backlink Linklerinin Yumuşak Geçişi */
.soft-link {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.5;
    font-family: 'Courier New', monospace;
    transition: all 0.8s ease;
}

.soft-link:hover {
    color: #F4A7BA;
    opacity: 1;
}
/* [GENEL YAZI OKUNABİLİRLİĞİ] */
.contact-page {
    color: #FFFFFF !important; /* Tüm genel yazıları beyaz yap */
}

/* [FORM ETİKETLERİ - GÖRÜNMEYEN KISIM] */
.form-label {
    color: rgba(255, 255, 255, 0.9) !important; /* "İsim", "E-posta" gibi başlıkları netleştir */
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

/* [INPUT İÇİNDEKİ YAZILAR] */
.custom-input {
    color: #FFFFFF !important; /* Yazdığın yazının beyaz görünmesini sağlar */
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.3) !important; /* Örnek yazıların (Dila...) rengini kıs */
}

/* [DROPDOWN MENÜ RENK SABİTLEME] */
.dropdown-item {
    color: #FFFFFF !important; /* Açılır menüdeki Interests vb. yazıları beyaz yap */
    background: transparent !important;
}

.dropdown-item:hover {
    color: var(--accent-pink) !important; /* Üstüne gelince pembe olsun */
    background: rgba(244, 167, 186, 0.1) !important;
}

/* [KART İÇİNDEKİ OKUNURLUK] */
.card-body p {
    color: rgba(255, 255, 255, 0.8) !important; /* Kutu içindeki küçük metinleri belirginleştir */
}





.neon-journey {
    background: #0F172A;
    padding: 50px 0;
    color: white;
    overflow: hidden;
}

/* Merkeze İnen Işık Yolu */
.light-path {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(244, 167, 186, 0.1);
    transform: translateX(-50%);
}

/* Sürekli Aşağı İnen Işık Hüzmesi */
.light-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--accent-pink), transparent);
    animation: moveLight 4s infinite linear;
}

@keyframes moveLight {
    0% { top: -100px; }
    100% { top: 100%; }
}

/* Durak Noktaları */
.glow-point {
    width: 12px;
    height: 12px;
    background: #1e293b;
    border: 2px solid var(--accent-pink);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--accent-pink);
    margin-top: 10px;
}

.active-bg {
    background: var(--accent-pink) !important;
    box-shadow: 0 0 25px var(--accent-pink);
}

/* Yazı Stilleri */
.journey-row {
    margin-bottom: 120px;
    position: relative;
    z-index: 3;
}

.year-text {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    transition: 0.5s;
}

.active-glow {
    color: var(--accent-pink) !important;
    text-shadow: 0 0 20px rgba(244, 167, 186, 0.5);
}

.step-title {
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.step-desc {
    color: rgba(255, 255, 255, 0.6);
    max-width: 350px;
}

/* Mobil için yolu sola çekme */
@media (max-width: 767px) {
    .light-path { left: 20px; }
    .glow-point { margin-left: -11px; }
    .journey-row { margin-left: 40px; text-align: left !important; }
}