/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.header {
    position: relative;
    background-size: cover;
    background-image: url(img/Element_3.jpg);
  
}

.header-image {
    width: 100%;
    height: 350px;
    /*background-size: cover; /* Passt das Bild an, um den gesamten Bereich zu füllen */
    background-position: center; /* Zentriert das Bild */
    background-repeat: no-repeat; /* Wiederholt das Bild nicht */
      
}

.navigation {
    background-color: #7C9068/* Grüne Farbe */;
    text-align: center;
    padding: 10px 0;
    
}

.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 5rem;
    
}

.navigation ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing:0.1rem;
    font-variant:normal;
    font-weight: bold;      
}
.navigation ul li a:hover{
    color: white;
    text-decoration: none;
    letter-spacing:0.3rem;
    font-weight: bold;      
}

.section {
    margin: 80px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.guestbook-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guestbook-form input,
.guestbook-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.guestbook-form button {
    background-color: #6f9468;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.guestbook-form button:hover {
    background-color: #7C9068;
}

.footer {
   /* background-color: #f1f1f1;*/
    text-align: left;
    padding: 20px;
    margin-top: 20px;
    background-image: url(img/Element_3.jpg);
    background-size: cover;
}

.footer .contact h2 {
    font-size: 1.3rem;
    margin: 5px 0;
}

.footer .contact p {
    margin: 5px 0;
}
