/* ═══════════════════════════════════════════
   Astroloop — Base & Reset
   NO SCROLL — Tek sayfa, 100vh viewport
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

html, body {
    height: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-ui);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    position: relative;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-ui);
    background: none;
}

input, select {
    font-family: var(--font-ui);
    outline: none;
    border: none;
    background: none;
}

::selection {
    background: var(--gold-dim);
    color: var(--text-primary);
}

::-webkit-scrollbar { display: none; }

/* Yıldız Canvas Arka Plan */
#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Takımyıldız Haritası Canvas */
#constellation-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Ana Sayfa Wrapper — tam viewport */
.page-wrapper {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 56px;
}

/* ═══ Mobile Base Responsive ═══ */
@media (max-width: 768px) {
    .page-wrapper {
        padding-top: 50px;
    }
}

@media (max-width: 380px) {
    html {
        font-size: 14px;
    }
}
