
nav {
    background-color: #1344dd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 80%;  /* Breite auf 70% setzen, statt 100% */
    padding: 0 10%; /* Etwas Abstand links und rechts */
    margin: 0 auto; /* Zentriert das nav-Element */
}

.menu {
    display: flex;
    list-style-type: none;
    padding: 10px;
    justify-content: space-around;
}

.menu li {
    padding: 10px;
	position: relative; /* Damit das Pseudoelement richtig positioniert werden kann */
}

.menu a {
    text-decoration: none;
    color: #eaeaa4;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Hover-Effekt mit Unterstrich */
.menu a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px; /* Dicke des Unterstrichs */
    background-color: #fff; /* Farbe des Unterstrichs */
    transition: width 0.3s ease;
}

/* Hover-Effekt */
.menu a:hover {
    color: #fff; /* Helle Farbe für den Hover-Effekt */
	font-weight: bold; /* Text wird fett */
    transform: translateY(-5px); /* Leichte Bewegung nach oben */
}

.menu a:hover::before {
    width: 100%; /* Der Unterstrich geht über die gesamte Breite des Links */
}

/* Medienabfrage für kleinere Bildschirme (z.B. Handy) */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu li {
        margin: 5px 0;
    }

    nav {
        width: 90%;  /* Bei kleinen Bildschirmen breiter */
        padding: 0 5%; /* Weniger Abstand links und rechts */
    }
}

.aqua-viva {
    font-size:18px;
    line-height:1.7;
}

.aqua-viva h1 {
    font-size:42px;
}

.blue {
    color:#0055b2;
}

.dark {
    color:#161616;
}

.separator {
    margin:40px 0;
    border:0;
    border-top:1px solid #ddd;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
}

.gallery a {
    flex: 0 0 30%;
    max-width: 30%;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.highlight {
    font-family:Lato, sans-serif;
    font-size:34px;
    font-weight:900;
    line-height:1.2;
    margin:50px 0;
}

.cta {
    padding:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.button {
    background:#0055b2;
    color:white;
    padding:12px 25px;
    text-decoration:none;
    border-radius:4px;
}

.feature{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
    max-width:1400px;
    margin:120px auto;
    padding:0 60px;
}

.feature-text h2{
    font-size:40px;
    font-weight:300;
    color:#0055b2;
    line-height:1.1;
    margin-bottom:30px;
}

.feature-text p{
    font-size:18px;
    line-height:1.8;
}

.feature-image{
    text-align:center;
}

.feature-image img{
    width:70%;
    max-width:420px;
}

.technical{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
    max-width:1400px;
    margin:120px auto;
    padding:0 60px;
}


/* Bild links */
.technical-image{
    text-align:center;
}

.technical-image img{
    width:100%;
    max-width:550px;
}


/* Text rechts */
.technical-content h2{
    font-size:48px;
    font-weight:300;
    color:#0055b2;
    margin-bottom:50px;
}


.technical-list{
    display:flex;
    flex-direction:column;
    gap:30px;
}


.technical-item{
    display:flex;
    align-items:center;
    gap:25px;
}


.icon{
    display:flex;
    justify-content:center;
    align-items:center;
    width:50px;
    height:50px;
    background:#0055b2;
    color:white;
    border-radius:50%;
    font-size:42px;
    line-height:1;
}


.technical-item h3{
    margin:0 0 8px;
    color:#0055b2;
    font-size:22px;
    font-weight:400;
}


.technical-item p{
    margin:0;
    color:#65748b;
    font-size:18px;
}