body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #000000;
    transition: all 0.3s ease-in-out;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;    
    padding-right: 0.63rem;  
    padding-bottom: 1.25rem; 
    padding-left: 0.63rem;  
    background-color: #ffffff;
    transition: all 0.3s ease-in-out; 
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    transition: gap 0.3s ease;
}

.logo-container img {
    max-height: 15.6rem;
    height: auto;
    transition: max-height 0.3s ease;
}

.logo-text h1 {
    margin: 0;
    font-size: 3.2rem;
    font-weight: bold;
    transition: font-size 0.3s ease;
}
.logo-text p {
    margin: 0; 
    font-size: 1.2rem;
    line-height: 1.5; 
    color: #000000; 
    text-align: left; 
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

h2 {
    text-align: left;
    margin-left: 1.3rem;
    font-size: 1.6rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

#navRight {
    position: absolute;
    top: 4rem;
    right: 0;
    padding-top: 1rem; 
    padding-right: 2rem; 
    padding-bottom: 1rem; 
    padding-left: 2rem;  
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

#navRight a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
    font-size: 1.9rem;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0.5rem 1rem;
}

#navRight a:hover {
    color: #8a8a8a;
    transform: scale(1.1);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    padding: 0.6rem;
    transition: all 0.3s ease;
}

.gallery a {
    position: relative;
    overflow: hidden;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    opacity: 0.3s ease;
}

.gallery a .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(0, 0, 0);
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    padding: 0.6rem;
    transition: opacity 0.3s ease;
}

.home .gallery a:hover img {
    transform: scale(1.05);
    opacity: 0.6;
}

.gallery a:hover .title {
    opacity: 1;
}

.beschreibung h2 {
    text-align: left;
    font-size: 1.7rem;
    margin-top: 4rem; 
    margin-right: 20rem; 
    margin-bottom: 2rem; 
    margin-left: 20rem; 
    color: #000000;
    font-weight: bold;
    transition: all 0.3s ease;
}

.beschreibung p {
    max-width: 50rem;
    margin-top: 0; 
    margin-right: 20rem; 
    margin-bottom: 4rem;  
    margin-left: 20rem;    
    text-align: left;
    color: #000000;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.beschreibung ul {
    text-align: left;
    padding-left: 1.5rem;
    margin-top: 2rem; 
    margin-right: auto; 
    margin-bottom: 2rem; 
    margin-left: auto;  
    max-width: 32rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.beschreibung img {
    margin: 0;
    margin-top: -3rem;
}

/* CONTACT */
.contact-bild {
    justify-items: center;
    height: auto;
    width: 100%;
    margin-top: 2rem;  
    margin-right: 0;  
    margin-bottom: 4rem;
    margin-left: 0;    
}

.contact-intro {
    padding-bottom: 7rem;
    font-size: calc(0.9rem + 0.2vw); 
    text-align: center;
    color: #000000; 
    line-height: 1.6; 
    transition: all 0.3s ease;
}

.contact-leiste {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: center; 
    margin-top: 4rem; 
    gap: 1.5rem; 
    padding: 0; 
    transition: all 0.3s ease;
}

.contact-leiste div {
    font-size: calc(0.9rem + 0.2vw); 
    line-height: 1.5; 
    flex: 1; 
    max-width: 50%;
}

.contact-leiste div p {
    max-width: 100%; 
    margin: 0;
    text-align: left; 
    font-size: calc(0.9rem + 0.2vw);
    color: #333;
    line-height: 2.5;
}

.contact-leiste img {
    flex: 0 0 auto; 
    max-width: 9.4rem;
    margin-left: 12.5rem;
    height: auto; 
    transition: all 0.3s ease;
}

.footer {
    margin-top: 8rem; 
    transition: margin 0.3s ease;
}

.footer .contact-link {
    color: #000000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5rem;
    font-size: calc(0.8rem + 0.1vw); 
    transition: color 0.3s ease;
}

.footer .contact-link:hover {
    color: #888888;
}

/*FOOTER*/
.footer {
    margin-top: 12rem;
    text-align: center;
    padding: 1.2rem;
    background-color: #f8f9fa;
    color: #000000;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer p {
    margin: 0.8rem 0;
    color: #000000;
    transition: all 0.3s ease;
}
