/* css/style.css */
/* Basis-Styling für alle Geräte */
body {
    font-family: 'Ubuntu', 'DejaVu Sans', 'Arial', sans-serif;
    margin: 10px;
    padding: 0;
    line-height: 1.6; /*Zeilenabstand*/
    font-size: 26;
}

header {
    background: #333;
    color: white;
    padding: 10px;
    text-align: center;
}
header h1 {
    font-weight: 100;
}

main {
    background: white;
    padding: 0px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

footer {
    background: #333;
    color: white;
    padding: 0px;
    text-align: center;
    position: relative;
/*    width: 100%;*/
}
.home-link {
    color: white;
    text-decoration: none;
}
.home-icon {
    font-size: 48px; /* Großes Symbol */
}
.home-link:hover {
    text-decoration: underline; /* Nur Unterstreichen bei Hover */
}
.lang-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.flag {
    font-size: 1.5rem;                /* Skalierbare Größe */
    text-decoration: none;            /* Keine Unterstreichung */
    line-height: 1;                   
    padding: 4px;                     /* Klickfläche vergrößern */
    border-radius: 6px;               
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.flag:hover,
.flag:focus {
    transform: scale(1.2);            /* Leicht vergrößern */
    opacity: 0.8;                     
    background-color: rgba(255,255,255,0.15);
    outline: none;                     /* Optional: eigener Fokus-Stil */
}

.flag.active {
    background-color: rgba(255,255,255,0.3);
    transform: scale(1.15);           /* leicht größer als normal */
    cursor: default;                  /* zeigt an, dass Klick nicht nötig */
}
