/* 1. Dəyişənlər və Əsas Ayarlar */
:root {
    --primary-dark: #0a0f1a;     /* Şəkildəki o tünd, dərin ton */
    --gold-main: #b28d42;        /* Əsas qızılı/mis tonu */
    --gold-light: #d4b477;       /* Parlaq qızılı tonu */
    --bg-light: #fdfdfd;         /* Yumşaq ağ fon */
    --text-gray: #555555;        /* Yazı rəngi */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. Ana Konteyner (Split Screen) */
.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* 3. Sol Tərəf - Vizual Hissə */
.image-section {
    flex: 1.2; /* Şəkil hissəsi bir az daha geniş olsun */
    background-image: url('https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    transition: var(--transition);
}

.image-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 15, 26, 0.2), transparent);
}

/* 4. Sağ Tərəf - Məzmun Hissəsi */
.content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5% 8%;
    position: relative;
    background-color: var(--bg-light);
}

/* 5. Loqo Dizaynı (İstədiyin Rənglərdə) */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    position: absolute;
    top: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gold-text {
    background: linear-gradient(45deg, var(--gold-main), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* 6. Mətnlər */
.main-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.main-text p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 480px;
    font-weight: 300;
}

/* 8. Sosial Linklər və Footer */
.socials {
    display: flex;
    gap: 30px;
}

.socials a {
    text-decoration: none;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

.socials a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--gold-main);
    transition: var(--transition);
}

.socials a:hover::after {
    width: 100%;
}

.footer-note {
    position: absolute;
    bottom: 50px;
    font-size: 11px;
    color: #999;
    letter-spacing: 1px;
}

/* 9. Responsive (Mobil Uyğunluq) */
@media (max-width: 1024px) {
    .container { flex-direction: column; }
    .image-section { height: 40vh; }
    .content-section {
        padding: 80px 40px;
        text-align: center;
        align-items: center;
    }
    .logo { position: relative; top: 0; margin-bottom: 40px; }
    .footer-note { position: relative; bottom: 0; margin-top: 40px; }
    .notify-form { width: 100%; }
}