/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    height: 100vh;
    overflow: hidden; 
    color: #fff;
    background-color: #003830;
}

/* Video ve Overlay */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Blur/Netlik Ayarı: rgba içindeki 0.85 değerini 0.5'e çekerek videoyu netleştirdik */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 56, 48, 0.5); 
}

/* Logo Sol Üst */
.logo-wrapper {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
}

.logo-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px; /* Biraz daha büyütüldü */
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: fadeInDown 1.2s ease;
}

.logo {
    width: 140px; /* Logo boyutu büyütüldü */
    height: auto;
    display: block;
}

/* İçerik */
.content {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.text-container {
    max-width: 800px;
    animation: fadeInUp 1.2s ease;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sub-title {
    font-size: 1.4rem;
    color: #f8a832;
    margin-top: 10px;
}

.divider {
    height: 4px;
    width: 100px;
    background: #f8a832;
    margin: 30px auto;
}

/* Alt Bar (Hailuo Yazısını Kapatan Kalın Çizgi Efekti) */
.bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff; /* Kalın beyaz çizgi efekti */
    padding: 20px 0;
    z-index: 20;
}

.footer-content {
    display: flex;
    justify-content: space-around; /* Bir köşeye domain, bir köşeye mail */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-link {
    color: #003830; /* Kurumsal yeşil yazı */
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: lowercase;
}

.footer-divider {
    height: 20px;
    width: 2px;
    background: rgba(0, 56, 48, 0.2);
}

/* Animasyonlar */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
    .logo-wrapper { top: 20px; left: 20px; }
    .logo { width: 80px; }
    .main-title { font-size: 2rem; }
    .footer-content { flex-direction: column; gap: 10px; }
}