/* Grundlegende Stile */
body {
    font-family: Arial, sans-serif; /* Alternativ Google Fonts */
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
}

/* Header und Logo */
header {
    background-color: #007BFF; /* Blau für den Header */
    padding: 15px 0;
    transition: background-color 0.3s; /* Übergang für Header-Hintergrundfarbe */
}
/* Textfarbe im Header */
header h1, header h2, header p, header a {
    color: #FFFFFF; /* Weiß für Header-Text */
    transition: color 0.3s; /* Glatter Übergang für die Textfarbe */
}
header:hover {
    background-color: #0056b3; /* Dunkleres Blau beim Hover */
}
.logo {
    width: 150px;
    margin-top: 20px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0056b3; /* Dunkleres Blau für Menü */
    padding: 10px 20px;
    transition: padding 0.3s;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.nav-toggle .bar {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 4px auto;
    transition: all 0.3s;
}
.nav-menu {
    list-style: none;
    padding: 0;
    display: flex;
    transition: max-height 0.3s ease;
}
.nav-menu li {
    margin: 0 15px;
}
.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    padding: 8px 10px;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}
.nav-menu a:hover {
    color: #FFD700; /* Gold für Hover */
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Hauptbereich */
main {
    margin: 20px auto;
    padding: 20px;
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
main:hover {
    transform: scale(1.01);
}

/* Sektionen */
section {
    margin-bottom: 20px;
}
h2 {
    color: #007BFF;
    transition: color 0.3s;
}
h2:hover {
    color: #0056b3;
}
h3 {
    color: #333;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #007BFF;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.cta-button:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Formular */
form {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
input[type="text"],
select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}
input[type="text"]:focus,
select:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    background-color: #e6f7ff;
}
button[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}
button[type="submit"]:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Cookie-Banner */
.cookie-banner {
    background-color: #333;
    color: #fff;
    padding: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-toggle {
        display: flex;
        padding: 10px;
        background: none;
        color: white;
        font-size: 20px;
        margin-bottom: 10px;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #0056b3;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 10;
    }
    .nav-menu li {
        margin: 10px 0;
    }
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
.nav-menu.active {
    display: flex;
    max-height: 300px;
    overflow: hidden;
}

/* Abschnitt für Umzugslösungen */
.moving-solutions {
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    color: black;
    text-align: center;
    padding: 50px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.moving-solutions h2 {
    font-size: 36px;
    margin-bottom: 10px;
}
.moving-solutions p {
    font-size: 20px;
    margin-bottom: 20px;
}
.moving-solutions .cta-button {
    background-color: #007BFF;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.moving-solutions .cta-button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #007BFF;
    color: #fff;
    padding: 20px;
    text-align: center;
    transition: background-color 0.3s;
}
footer:hover {
    background-color: #0056b3;
}
.site-footer {
    color: white;
    padding: 20px 0;
}
.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-section {
    flex: 1;
    padding: 10px;
}
.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.5;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin: 5px 0;
}
.footer-section a {
    color: white;
    text-decoration: none;
}

/* Formular Styling */
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

button[type="submit"] {
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

button[type="submit"]:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}


        

/* Footer Styling */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}

footer p {
    margin: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

.whatsapp-section a {
    background-color: #25D366;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
}


