/* =========================================================
   1. REGELZENTRALE
   ========================================================= */
:root {
    --header-hoehe: 170px;

    --logo-groesse: 185px;
    --logo-x: -35px;       
    --logo-y: -8px;        

    --video-garten-groesse: 157px;
    --video-garten-x: -40px;
    --video-garten-y: -7px;

    --video-hausmeister-groesse: 157px;
    --video-hausmeister-x: -40px;
    --video-hausmeister-y: -7px;
}

/* =========================================================
   2. ALLGEMEINES STYLESHEET
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

/* =========================================================
   3. HEADER & NAVIGATION
   ========================================================= */
.main-header {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background-color: #000000; 
    padding: 0 5%; 
    height: var(--header-hoehe);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo-container {
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%; 
}

#static-logo {
    height: var(--logo-groesse);
    transform: translate(var(--logo-x), var(--logo-y));
}

#video-logo-garten {
    height: var(--video-garten-groesse);
    transform: translate(var(--video-garten-x), var(--video-garten-y));
}

#video-logo-hausmeister {
    height: var(--video-hausmeister-groesse);
    transform: translate(var(--video-hausmeister-x), var(--video-hausmeister-y));
}

.header-logo {
    width: auto;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 35px; 
    align-items: center;
}

nav a, .dropbtn {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

nav a:hover, .dropbtn:hover {
    color: #cccccc; 
}

/* =========================================================
   4. DROPDOWN MENÜ
   ========================================================= */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000000;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1;
    top: 100%;
    left: 0;
    border-top: 2px solid #444;
}

.dropdown-content a {
    color: #ffffff;
    padding: 15px 20px;
    text-decoration: none;
    display: block;
    font-weight: normal;
    border-bottom: 1px solid #222;
}

.dropdown-content a:hover {
    background-color: #222222;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* =========================================================
   5. SEITEN-STEUERUNG (Tabs)
   ========================================================= */
main.page {
    display: none;
    margin-top: var(--header-hoehe);
    min-height: 80vh;
}

main.page.active {
    display: block;
}

/* =========================================================
   6. STARTSEITE (HOME)
   ========================================================= */
.home-teaser-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 60px 10%; 
    gap: 80px; 
    background-color: #ffffff;
}

.home-card {
    display: flex;
    width: 100%;
    gap: 40px; 
    cursor: pointer;
    transition: transform 0.3s;
    align-items: flex-start; 
}

.home-card:hover {
    transform: scale(1.01); 
}

.home-card.reverse {
    flex-direction: row; 
}

.home-card-title {
    flex: 1; 
    background-color: transparent; 
    display: block; 
    text-align: left; 
}

.home-card-title h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #000;
    line-height: 1.3;
    margin-top: -5px; 
}

.home-card-img {
    flex: 2; 
}

.home-card-img img {
    width: 100%;
    height: auto; 
    object-fit: contain;
    border-radius: 2px; 
}

/* =========================================================
   7. SCROLL-HERO (Die riesigen Wisch-Bilder)
   ========================================================= */
.hero-scroll {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
}

.scroll-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.scroll-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-clean {
    clip-path: inset(0 100% 0 0);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    z-index: 10;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: rgba(0,0,0,0.7);
    color: white;
    border: 2px solid white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: white;
    color: black;
}

/* =========================================================
   8. LEISTUNGS-LISTEN (Vorher/Nachher Raster)
   ========================================================= */
.services-list-container { 
    padding: 80px 10%; 
    max-width: 1200px; 
    margin: 0 auto; 
    background-color: #ffffff;
}

.services-main-title { 
    font-size: 2.5rem; 
    font-weight: 900;
    margin-bottom: 60px; 
    text-align: left; 
}

.service-item { 
    margin-bottom: 70px; 
    text-align: center; 
}

.service-item-title { 
    font-size: 1.4rem; 
    font-weight: bold;
    margin-bottom: 20px; 
}

.service-images { 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
    margin-bottom: 20px; 
}

.service-images img { 
    width: 45%; 
    max-width: 450px; 
    height: auto; 
    object-fit: cover; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.service-item-desc { 
    font-size: 1.1rem; 
    font-weight: bold;
    color: #000;
}

.services-footer-title { 
    font-size: 2rem; 
    font-weight: 900;
    margin-top: 60px; 
    text-align: left; 
}

/* =========================================================
   9. KONTAKTFORMULAR
   ========================================================= */
.contact-section {
    padding: 60px 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.page-title {
    text-align: left;
    font-size: 3rem;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    gap: 50px;
    justify-content: flex-start;
}

.contact-info {
    flex: 1;
    max-width: 350px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info .mt-20 {
    margin-top: 20px;
}

.contact-form-box {
    flex: 2;
    background-color: #f4f4f4; 
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background-color: #ffffff;
    border-radius: 2px;
}

.btn-submit {
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #333;
}

/* =========================================================
   10. ÜBER UNS (Team)
   ========================================================= */
.about-section {
    padding: 60px 20px;
    max-width: 1000px; 
    margin: 0 auto;
}

.team-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.team-card {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 20px;
    gap: 30px;
}

.team-img-circle {
    width: 120px;
    height: 120px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.team-info p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

/* =========================================================
   11. IMPRESSUM & DATENSCHUTZ
   ========================================================= */
.legal-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

/* =========================================================
   12. FOOTER
   ========================================================= */
footer {
    background-color: #ffffff; 
    color: #000000; 
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid #eaeaea; 
}

.footer-contact {
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: bold;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.footer-links a {
    color: #000000;
    font-weight: bold;
    text-decoration: underline; 
    text-underline-offset: 4px; 
}

.footer-links a:hover {
    color: #666666;
}