:root {
    --gold-primary: #cfa861;
    --gold-light: #e6c587;
    --gold-dark: #a37c35;
    --bg-dark: #0a0a0c;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
}

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

/* Sayfanın kesinlikle kaydırılmamasını (scroll olmamasını) sağlıyoruz */
html, body {
    width: 100%;
    height: 100vh;
    overflow: hidden; 
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Background Animated Particles/Glows */
.background-animation {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a24 0%, var(--bg-dark) 100%);
    pointer-events: none;
}

.background-animation span {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(207, 168, 97, 0.12) 0%, rgba(0,0,0,0) 70%);
    animation: float 15s infinite ease-in-out;
}

.background-animation span:nth-child(1) { width: 45vw; height: 45vw; top: -10%; left: -10%; animation-delay: 0s; }
.background-animation span:nth-child(2) { width: 35vw; height: 35vw; bottom: -10%; right: -5%; animation-delay: -3s; }
.background-animation span:nth-child(3) { width: 55vw; height: 55vw; top: 40%; left: 60%; animation-delay: -7s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Main Content Layout */
.content-wrapper {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Ekrana sığması için dikey boşlukları vh ile ayarladık */
    padding: 2vh 5%;
    width: 100%;
    height: 100%;
    animation: fadeUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

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

/* Logo */
.logo-container {
    margin-bottom: 3vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(207, 168, 97, 0.15) 0%, transparent 60%);
    z-index: -1;
    animation: pulse 4s infinite;
}

.logo {
    /* Logonun yüksekliği maksimum ekranın %25'i kadar olabilir, böylece küçük ekranlarda taşmaz */
    max-height: 25vh;
    width: auto;
    max-width: 90vw;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover {
    transform: scale(1.05) translateY(-2px);
}

@keyframes pulse {
    0% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.5; transform: scale(0.9); }
}

/* Typography (Viewport tabanlı ölçekleme - vw ve vh) */
.title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 4vw + 2vh, 4rem);
    font-weight: 700;
    letter-spacing: clamp(2px, 0.5vw, 6px);
    color: var(--text-main);
    margin-bottom: 0.5vh;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff, #c4c4c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.subtitle {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 2vw + 1vh, 2.2rem);
    font-weight: 400;
    letter-spacing: clamp(3px, 1vw, 10px);
    color: var(--gold-primary);
    margin-bottom: 2vh;
    text-transform: uppercase;
}

/* Decorative Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2vh 0;
    gap: 1rem;
    width: 100%;
    max-width: clamp(200px, 40vw, 400px);
}

.divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.divider .diamond {
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    transform: rotate(45deg);
    box-shadow: 0 0 10px var(--gold-light);
}

/* Content */
.coming-soon {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 3vw + 1vh, 2.5rem);
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 1.5vh;
    letter-spacing: 1px;
}

.description {
    font-size: clamp(0.85rem, 1.5vw + 0.5vh, 1.1rem);
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3vh auto;
    font-weight: 300;
    padding: 0 1rem;
}

/* Loading Dots */
.contact-info {
    display: flex;
    justify-content: center;
    margin-top: 1vh;
}

.loader {
    display: flex;
    gap: 8px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    animation: dotPulse 1.5s infinite ease-in-out;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 100% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 10px var(--gold-primary); }
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    padding: 1.5vh;
    font-size: clamp(0.7rem, 1vw + 0.5vh, 0.9rem);
    color: var(--text-muted);
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    /* Footer her zaman en altta kalacak şekilde flex ile sabitlenir */
}

.footer a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.footer a:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
    text-shadow: 0 0 8px rgba(255,255,255,0.4);
}
