* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    height: 100%;
    min-height: 100vh;
}

body {
    background-image: url('../images/Hatter.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: auto; /* JavaScript fogja felülírni */
    min-height: 100vh;
    font-size: 16px; /* Megakadályozza a zoomolást iOS-en */
    -webkit-text-size-adjust: 100%; /* Szöveg méret automatikus beállítás */
}

.main-content {
    min-height: calc(100vh - 200px);
    position: relative;
}

/* Mobil nézet optimalizálás navigációhoz */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .main-content {
        min-height: calc(100vh - 150px); /* Kisebb margó mobilra */
    }
}

/* Extra kismobil nézet további finomhangolása */
@media (max-width: 400px) {
    body {
        font-size: 15px;
    }
}