body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

header {
    background-color: #4a90e2;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1, header p {
    text-align: center;
    color: white;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: fat;
    color: black;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d9d9d9;
}

section {
    margin: 40px 0;
}

#urlaub img, #Mietwagen img, #Ferienwohnungen img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

#Ferienwohnungen h1 {
    margin-bottom: 1cm;
    text-align: center;
}

#contact {
    margin-top: 1cm;
}

.centered {
    text-align: center;
    margin: 20px 0;
}

.side-by-side {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

#Ferienwohnungen .link-wrapper {
    margin-bottom: 2cm;
    border: 2px solid #ccc;
    padding: 10px;
    width: calc(33.33% - 20px);
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
}

#Ferienwohnungen .link-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#Ferienwohnungen .full-width-link {
    width: 100%;
    text-decoration: none;
    color: darkgreen;
    font-weight: bold;
    padding: 10px;
    background-color: #a3d3a3;
    border: 2px solid #ccc;
    box-sizing: border-box;
    display: block;
    text-align: center;
    margin-top: 10px;
    border-radius: 8px;
    transition: background-color 0.3s, border-color 0.3s;
}

#Ferienwohnungen .full-width-link:hover {
    background-color: #88c488;
    border-color: #888;
}

footer {
    background-color: #f1f1f1;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

footer a {
    color: darkgreen;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #5e8e5e;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form label {
    margin-top: 10px;
    font-weight: bold;
}

form input, form textarea {
    padding: 10px;
    margin-top: 5px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    margin-top: 20px;
    padding: 10px;
    background-color: darkgreen;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #5e8e5e;
}

#contact h1 {
    margin-top: 1cm;
    text-align: center;
color: red;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner button {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
    transition: background-color 0.3s;
}

.cookie-banner button:hover {
    background-color: #357ab7;
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.popup-content {
    position: relative;
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    border-radius: 10px;
}

.popup-content h2 {
    margin-top: 0;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.blinking {
    animation: blinking 2s infinite;
}

@keyframes blinking {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

