/* Reset, tipografi ve tum sayfada gecerli temel kurallar. */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 16px; /* Okunabilirlik: minimum 16px temel metin */
}
body {
    font-family: 'Red Hat Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem; /* 16px – okunabilir temel metin boyutu */
    background: #0a0a0f;
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Footer */
footer {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    footer {
        padding: 1.5rem;
    }
}


@media (max-width: 480px) {
    footer {
        padding: 1rem;
    }
}
