@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500&family=Montserrat:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap');

:root {
    --gold: #c89d70;
    --text-white: #f5f5f5;
    --text-muted: #dcdcdc;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-display: 'Cinzel', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

body, html {
    position: relative;
    width: 100%;
    height: 100vh; /* KESİNLİKLE 100% EKRAN BOYUTU */
    background-color: #050505;
    overflow: hidden; /* SCROLL TAMAMEN İPTAL EDİLDİ */
    font-family: var(--font-serif);
}

/* ── BACKGROUND ── */
.landing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1; /* Body'nin üstünde */
}

.landing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.7) 45%, rgba(8,8,8,0.1) 100%);
    z-index: 3; /* Logonun üstünde */
    pointer-events: none;
}

/* ── HEADER ── */
.landing-header {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: clamp(20px, 4vh, 50px) 6%; /* Ekrana göre boşluk */
    z-index: 10;
}

.landing-logo {
    font-family: var(--font-display);
    font-size: clamp(12px, 1.5vh, 16px);
    letter-spacing: 0.25em;
    color: var(--text-white);
    text-transform: uppercase;
    font-weight: 400;
}

.landing-ig {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1vw, 16px);
    text-decoration: none;
    color: var(--text-white);
    transition: opacity 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.landing-ig:hover {
    opacity: 0.7;
}

.ig-text {
    font-family: var(--font-sans);
    font-size: clamp(6.5px, 1vh, 8.5px);
    letter-spacing: 0.15em;
    line-height: 1.4;
    text-transform: uppercase;
    text-align: right;
    color: var(--text-muted);
}

.ig-line {
    width: clamp(12px, 2vw, 24px);
    height: 1px;
    background-color: var(--text-muted);
}

.landing-ig svg {
    width: clamp(14px, 2vh, 18px);
    height: clamp(14px, 2vh, 18px);
}

/* ── MAIN CONTENT ── */
.landing-content {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 6%; /* Üstten alttan padding kaldırıldı, flex center hallediyor */
    max-width: 800px;
}

.landing-title {
    font-family: var(--font-serif);
    font-size: clamp(26px, 5vh, 52px); /* Hem genişliğe hem yüksekliğe göre ölçeklenir */
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: clamp(15px, 3vh, 30px);
}

.landing-divider {
    width: clamp(30px, 4vw, 45px);
    height: 1px;
    background-color: var(--gold);
    margin: 0 0 clamp(15px, 3vh, 35px) 0;
}

.landing-body {
    font-family: var(--font-serif);
    font-size: clamp(15px, 3vh, 24px);
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-muted);
    margin-bottom: clamp(20px, 4vh, 40px);
}

.landing-body p {
    margin-bottom: clamp(6px, 1.5vh, 12px);
}

.landing-footer-title {
    font-family: var(--font-serif);
    font-size: clamp(26px, 5vh, 52px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--gold);
}

/* ── ANIMATIONS ── */
.hero-anim {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 1.0s; }
.delay-4 { animation-delay: 1.4s; }

/* ── FOOTER CD LOGO ── */
.footer-cd-link {
    position: absolute;
    bottom: clamp(15px, 3vh, 40px);
    right: 6%;
    z-index: 2; /* Resmin (1) üstünde, gölgenin (3) altında */
    opacity: 0.15; /* Gölgenin altında olduğu için kendi opaklığını biraz geri veriyoruz ki tamamen kaybolmasın */
    transition: opacity 0.5s ease;
    display: inline-block;
}

.footer-cd-link:hover {
    opacity: 0.15; /* Hover anında bile çok hafif görünecek */
}

.footer-cd-link img {
    height: clamp(14px, 2.5vh, 20px); /* Boyutu da ufalttım ki iyice gömülsün */
    width: auto;
    pointer-events: auto;
}

/* ── RESPONSIVE (MOBILE) ── */
@media (max-width: 768px) {
    .landing-overlay {
        background: linear-gradient(180deg, rgba(8,8,8,0.5) 0%, rgba(8,8,8,0.85) 45%, rgba(8,8,8,0.98) 100%);
    }

    .landing-header {
        padding: clamp(20px, 3vh, 30px) 20px;
    }

    .landing-content {
        padding: 0 20px;
        /* Mobilde yazılar çok yukarıda kalmasın diye ufak bir itme */
        padding-top: clamp(20px, 10vh, 80px); 
    }
}
