/* Allgemeine Einstellungen */
body {
    font-family: 'Verdana', Arial, sans-serif;
    background-color: white;
    color: #002F6C; /* Dunkelblau */
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* Header & Logo */
header {
    background-color: #ffffff;            
    text-align: center;
    padding-bottom: 10px;
}
.hauptcontainer {
    width: 97vw;
    margin: 0 auto;
    padding: 0px;
    border-radius: 10px;
    border-style: solid;
    border-color: #ffffff;
    border-width: 5px;
    background-color: #ffffff;
}

.untercontainer {
    background-color: #ffffff;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: 3px;
    padding: 3px;
}

.textcontainer {
    background-color: #ffffff;
    margin-top: 5px; /* Oben 5 Pixel */
    margin-right: 10px; /* Rechts 5 Pixel */
    margin-bottom: 5px; /* Unten 5 Pixel */
    margin-left: 10px; /* Links 5 Pixel */
    border-radius: 10px;
    padding: 6px;
    border-style: solid;
    border-color: #007dc1;
    border-width: 2px;
}

.logo {
    display: flex;
    justify-content: center;
    padding-top: 10px;
} 

.logo img {
    max-height: 150px; 
    max-width: 90%;     
    height: auto;       
    width: auto;         
}

/* Menü */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000;
    padding: 10px 0;
}

.menulinks {
    display: flex;
    justify-content: center; 
    gap: 15px;
    flex-wrap: wrap;  
    text-align: center;
}

.menulinks a {
    text-decoration: none;
    color: #002F6C;
    padding: 5px 10px;
    font-weight: bold;
    transition: color 0.2s;
}

.menulinks a.active,
.menulinks a[aria-current="page"] {
    text-decoration: underline;
    text-decoration-thickness: 5px;
    font-weight: bold;
    color: #002F6C;
}

/* Linie unter Menü */
.menulinie {
    height: 2px;
    background-color: #002F6C;
    margin: 10px 0;            
}

/* Hero-Bereich */
.hero {
    text-align: center;            
    padding: 60px 20px 40px;
}

.hero h1 {
    font-size: 2.5em;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    padding: 15px 25px;
    background-color: #002F6C;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
}

/* Features, Preise, Kontakt, Screenshots */
.features, .prices, .contact, .screenshots {
    text-align: center;
    padding: 50px 20px;
    background-color: #F5F9FC;
    scroll-margin-top: 160px;
}

.feature, .price-option, .contact-info, .screenshot {
    margin: 20px 0;
}
