/* 
 * Gold Pilates - Hazırlanıyoruz Sayfası Tasarım Sistemi
 * Tüm yorum satırları Türkçe olarak yazılmıştır.
 */

/* Google Fonts Entegrasyonu: Cormorant Garamond (Lüks Serif) ve Plus Jakarta Sans (Modern Sans-Serif) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Renk Paleti Tasarımı */
    --bg-primary: #ffffff;          /* Saf Beyaz Arka Plan */
    --bg-secondary: #fafafa;        /* Yumuşak Beyaz/Gri Geçiş */
    --text-primary: #121212;        /* Derin Mat Siyah */
    --text-secondary: #4a4a4a;      /* Koyu Gri Okunabilir Açıklama Metni */
    --text-muted: #8e8e8e;          /* Soluk Gri Alt Metinler */
    --accent-gold: #D4AF37;         /* Premium Altın/Sarı Tonu */
    --accent-gold-light: #e5c05c;   /* Açık Altın Tonu */
    --border-color: #e5e5e5;        /* Açık Gri Kenarlık */
    
    /* Yazı Tipi Değişkenleri */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    
    /* Yumuşak Animasyon Geçişi */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sıfırlama ve Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Ana Konteyner - Dikey ve Yatayda Ortalanmış Tek Sütun */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 60px 24px;
    background-color: var(--bg-primary);
}

/* İçerik Bölümü */
.content-section {
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 40px;
    position: relative;
}

/* Logo Stili */
.logo-container {
    margin-bottom: 30px;
    width: 100%;
}

.logo {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-left: 0.25em; /* Letter-spacing dengelemesi için */
}

/* Logonun Altındaki Şık Altın Çizgi */
.logo::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.logo:hover::after {
    width: 100px;
}

/* Hero (Ana İçerik) Alanı */
.hero-content {
    margin: auto 0;
    width: 100%;
}

.coming-soon-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 6px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

.hero-title span {
    font-style: italic;
    font-weight: 400;
    color: var(--accent-gold);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Giriş Animasyonları (Gecikmeli Fade-in) */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DUYARLI (RESPONSIVE) TASARIM */

/* Tablet ve Küçük Ekranlar */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.4rem;
    }
}

/* Mobil Cihazlar */
@media (max-width: 640px) {
    .container {
        padding: 40px 20px;
    }

    .content-section {
        gap: 30px;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.6rem;
        margin-bottom: 18px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 25px;
    }
}
