@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=Dancing+Script:wght@700&display=swap');

:root {
    --primary-color: #333;
    --secondary-color: #f4f4f4;
    --accent-color: #c5a47e; /* Altın/bronz tonu */
    --text-light: #fff;
    --text-dark: #333;
}

/* GÜNCELLENEN KISIM 1: BODY AYARLARI */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    
    /* Eskiden height: 100% idi, bu ekranı kilitliyordu. */
    /* Şimdi min-height kullanıyoruz: */
    min-height: 100%; 
    
    /* Kaydırma çubuklarını otomatik yönet */
    overflow-x: hidden; /* Yatay kaymayı engelle */
    overflow-y: auto;   /* Dikey sığmazsa kaydır */
}

/* GÜNCELLENEN KISIM 2: CONTAINER AYARLARI */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* İçerik sığıyorsa ortala */
    align-items: center;
    text-align: center;
    
    min-height: 100vh; /* En az ekran boyu kadar ol */
    height: auto;      /* İçerik çoksa uza */
    
    width: 100%;
    position: relative;
    z-index: 2; /* Arka planın üstünde dur */
    
    /* Üstten 80px boşluk bırak ki logo asla kesilmesin */
    padding: 80px 20px; 
    
    box-sizing: border-box;
}

/* ... KODUN GERİ KALANI AYNI ŞEKİLDE DEVAM EDEBİLİR ... */
.background-overlay {
    position: fixed; /* DEĞİŞİKLİK BURADA: Resmi ekrana çiviledik */
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url('images/lips2.jpg') no-repeat center center/cover;
    filter: brightness(0.3); 
    z-index: 1; /* En arkada dursun */
}

/* --- YENİ LOGO STİLİ --- */
.brand-logo {
    max-width: 90%; /* Mobilde ekrandan taşmasın */
    width: 350px;   /* Masaüstünde ideal genişlik (Logona göre artırıp azaltabilirsin) */
    height: auto;   /* Resmin oranı bozulmasın */
    margin-bottom: 20px; /* Altındaki "ÇOK YAKINDA" yazısıyla mesafe */
    animation: fadeInDown 1s ease-out; /* Aynı giriş animasyonu */
    filter: invert(1);
}

/* Mobilde biraz daha küçültelim ki kibar dursun */
@media (max-width: 768px) {
    .brand-logo {
        width: 250px; 
    }
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s 0.3s ease-out backwards;
}

p {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 20px 0;
    animation: fadeInUp 1s 0.6s ease-out backwards;
}

/* Alıntı Stilleri */
.quote-container {
    max-width: 600px;
    margin: 10px 0 20px 0;
    animation: fadeInUp 1s 0.75s ease-out backwards;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary-color);
    margin: 0;
}

.quote-author {
    font-size: 1rem;
    color: var(--accent-color);
    margin-top: 10px;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    animation: fadeInUp 1s 0.9s ease-out backwards;
}

#countdown > div {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#countdown span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

#countdown div > div {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.subscribe-form {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    animation: fadeInUp 1s 1.2s ease-out backwards;
}

.subscribe-form input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--accent-color);
    border-radius: 5px 0 0 5px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.subscribe-form input[type="email"]::placeholder {
    color: #020000;
}

.subscribe-form button {
    padding: 15px 20px;
    border: none;
    background-color: #010000;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    text-transform: uppercase;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #6d0014;
}

.social-links {
    margin-top: 30px;
    animation: fadeInUp 1s 1.5s ease-out backwards;
}

.social-links a {
    color: var(--text-light);
    margin: 0 15px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.contact-info {
    margin-top: 30px;
    margin-bottom: 20px; /* En alttan biraz boşluk */
    display: flex;
    flex-direction: column; /* Alt alta dizilsin */
    gap: 15px; /* İki satır arası boşluk */
    animation: fadeInUp 1s 1.8s ease-out backwards; /* En son bunlar gelsin */
}

.contact-link {
    color: var(--text-light); /* Beyaz renk */
    text-decoration: none; /* Alt çizgiyi kaldır */
    font-size: 1.1rem; /* Okunaklı font boyutu */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* İkon ile yazı arası boşluk */
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(0,0,0,0.2); /* Hafif siyah zemin (okunabilirlik için) */
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-link i {
    color: var(--accent-color); /* İkonlar altın rengi olsun */
    font-size: 1.3rem;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-3px); /* Üzerine gelince hafif yukarı kalksın */
}

/* Mobilde yazı uzun gelirse taşmasın */
@media (max-width: 768px) {
    .contact-link {
        font-size: 0.95rem; /* Mobilde biraz küçültelim */
        width: 100%;
        box-sizing: border-box;
    }
}

/* 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 Cihazlar İçin Ayarlamalar */
/* style.css EN ALTI */
@media (max-width: 768px) {
    /* Mevcut kodların durabilir, şunları ekle/güncelle: */

    .container {
        justify-content: flex-start; /* Ortalamayı iptal et, tepeden başla */
        padding-top: 50px; /* Tepeden biraz boşluk bırak ki statüs çubuğuna yapışmasın */
        height: auto; /* Yüksekliği serbest bırak */
        min-height: 100%;
    }

    .brand-logo { 
        width: 200px; /* Logoyu mobilde biraz daha küçültelim, daha kibar dursun */
        margin-top: 10px;
    }

    /* Diğer mevcut kodların burada kalabilir... */
    .brand-name { font-size: 2.5rem; }
    h1 { font-size: 1.8rem; margin-top: 10px;} /* Başlığı da biraz küçülttüm */
    /* ... */
}
    h1 { font-size: 2rem; }
    p { font-size: 1rem; }
    #countdown { gap: 10px; }
    #countdown span { font-size: 1.8rem; }
    #countdown > div { padding: 10px; }
    .subscribe-form { flex-direction: column; max-width: 300px; }
    .subscribe-form input[type="email"], .subscribe-form button {
        border-radius: 5px;
        width: 100%;
        box-sizing: border-box;
    }
    .subscribe-form button { margin-top: 10px; 
    }
    
