/* [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 */
}
/* [FORM VE GLASS CARD] */
.glass-card {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 167, 186, 0.1) !important;
    border-radius: 20px;
}

.custom-input {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 10px;
    padding: 10px;
    transition: var(--transition-soft);
}

.custom-input:focus {
    border-color: var(--accent-pink) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* [DİĞER ÖĞELER] */
.pink-glow-text {
    color: var(--accent-pink) !important;
    text-shadow: 0 0 10px rgba(244, 167, 186, 0.4);
}

.carousel-caption-custom {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-custom {
    background: transparent;
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
    border-radius: 50px;
    padding: 10px;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    transition: var(--transition-soft);
}

.btn-custom:hover {
    background: var(--accent-pink);
    color: var(--bg-dark);
}

.pink-footer-link {
    color: var(--accent-pink) !important;
    text-decoration: none;
    font-family: 'Courier New', monospace;
}
/* [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 */
}