/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #007bff; /* Helles, professionelles Blau */
    --primary-dark: #0056b3;
    --dark-bg: #1a1a2e;
    --dark-bg-light: #16213e;
    --dark-card: #0f3460;
    --text-light: #e1e1e1;
    --text-muted: #a9a9a9;
    --accent: #00a8e8;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
}

/* Header and Navigation */
header {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links li {
    margin-left: 1.5rem;
    position: relative;
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.8px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
    transition: all 0.3s ease;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* WhatsApp Button in Navigation */
.nav-whatsapp {
    background-color: #25D366;
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 5px;
    display: flex;
    align-items: center;
    text-shadow: none !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    font-weight: 700 !important;
}

.nav-whatsapp:hover {
    background-color: #128C7E !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.nav-whatsapp i {
    margin-right: 5px;
    font-size: 1.2rem;
}

.nav-whatsapp::after {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('images/clean5.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border: 2px solid var(--primary);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.whatsapp-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border: 2px solid #25D366;
}

.whatsapp-hero-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.whatsapp-hero-button i {
    margin-right: 8px;
    font-size: 1.3rem;
}

.hero-phone {
    margin-top: 1rem;
    text-align: center;
    padding: 0 1rem;
}

.phone-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    white-space: nowrap;
}

.phone-link:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.15);
}

.phone-link i {
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 5rem 1rem;
    background-color: var(--dark-bg-light);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Price Table Section */
.prices {
    padding: 5rem 1rem;
    background-color: var(--dark-bg);
}

.prices h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.price-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th, .price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table th {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--accent);
}

.price-table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* About Section */
.about {
    padding: 5rem 1rem;
    background-color: var(--dark-bg);
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-info {
    color: var(--text-muted);
}

.about-info h3 {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.about-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-values {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.about-values li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
}

.about-values li i {
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.about-values strong {
    color: var(--text-light);
}

.about-cta {
    margin-top: 2rem;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.price-note {
    text-align: center;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-style: italic;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Cleaning Services Section */
.cleaning-services {
    padding: 5rem 1rem;
    background-color: var(--dark-bg);
}

.cleaning-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.services-text {
    color: var(--text-muted);
}

.services-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.services-list {
    margin-left: 1rem;
    margin-bottom: 1.5rem;
}

.services-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    list-style-type: none;
}

.services-list li i {
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.services-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.services-image:hover img {
    transform: scale(1.03);
}

/* Gallery Section */
.gallery {
    padding: 5rem 1rem;
    background-color: var(--dark-bg-light);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    color: var(--text-light);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    opacity: 0;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-caption p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact {
    padding: 2rem 1rem;
    background-color: var(--dark-bg-light);
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-info {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-details {
    text-align: left;
}

.contact-details h3 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.4rem;
    white-space: nowrap;
}

.contact-details i {
    color: var(--accent);
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.contact-details a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    text-decoration: underline;
    color: var(--primary);
}

.contact-details p {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    white-space: nowrap;
}

/* Social Buttons */
.social-buttons {
    margin-top: 2rem;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white !important;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.3);
    text-decoration: none !important;
}

.whatsapp-button i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Contact Form Styles */
.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.4rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--primary-dark);
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 8rem auto 2rem;
    padding: 2rem;
    background-color: var(--dark-card);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.legal-content h1 {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: var(--accent);
    margin: 2rem 0 1rem;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--text-muted);
    text-align: center;
    padding: 2rem 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

footer p {
    margin: 0.5rem 0;
}

footer a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent);
}

/* Mobile WhatsApp Button */
.mobile-whatsapp {
    display: none;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-card);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.mobile-menu-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem;
    text-align: center;
}

.mobile-menu .mobile-whatsapp {
    color: var(--accent);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    header {
        padding: 0.8rem 1.5rem;
    }
    
    .logo {
        margin-right: auto;
        font-size: 1.5rem;
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        gap: 1.2rem;
        margin-left: auto;
    }
    
    .nav-whatsapp {
        background-color: #25D366;
        color: white;
        padding: 10px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        transition: all 0.3s ease;
        margin-left: 0.5rem;
    }
    
    .nav-whatsapp:hover {
        background-color: #128C7E;
        transform: scale(1.1);
    }
    
    .nav-whatsapp i {
        font-size: 1.2rem;
    }
    
    .menu-icon {
        font-size: 1.4rem;
        padding: 0.5rem;
        margin-left: 0.5rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-card);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 0.5rem;
    }
    
    .mobile-whatsapp {
        display: none;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-button, 
    .whatsapp-hero-button {
        width: 100%;
        text-align: center;
        padding: 1.2rem 1rem;
        margin-bottom: 0.5rem;
    }
    
    /* Other Mobile Styles */
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .contact {
        padding: 1.5rem 1rem;
    }
    
    .contact h2 {
        margin-bottom: 1.5rem;
    }
    
    .contact-info {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .contact-details {
        text-align: left;
        margin-bottom: 0;
        font-size: 0.9rem;
    }
    
    .contact-details h3 {
        font-size: 1.2rem;
        white-space: nowrap;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .social-buttons {
        display: block;
    }
    
    .whatsapp-button {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-caption {
        opacity: 1;
        transform: translateY(0);
        background: rgba(0,0,0,0.7);
    }
    
    .services-content {
        grid-template-columns: 1fr;
    }
    
    .services-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        margin-top: 2rem;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .social-buttons {
        justify-content: center;
    }
    
    .whatsapp-button {
        width: 100%;
        text-align: center;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .price-table {
        overflow-x: auto;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-images {
        margin-top: 2rem;
    }
    
    .phone-link {
        font-size: 1.1rem;
    }
    
    .hero-phone {
        margin-top: 0.8rem;
    }
    
    .phone-link {
        font-size: 1.1rem;
        padding: 0.7rem 1.2rem;
        width: auto;
        display: inline-flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cta-button, 
    .whatsapp-hero-button {
        width: 100%;
        text-align: center;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 15, 36, 0.95);
    color: var(--text-light);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none; /* Initially hidden, will be shown via JS */
    border-top: 2px solid var(--primary);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
}

.cookie-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept, .cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--primary);
    color: white;
}

.cookie-accept:hover {
    background-color: var(--primary-dark);
}

.cookie-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* Menu Icon */
.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-light);
    padding: 0.5rem;
}

.menu-icon:hover {
    color: var(--accent);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-whatsapp {
        background-color: #25D366;
        color: white;
        padding: 10px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        transition: all 0.3s ease;
    }
    
    .nav-whatsapp:hover {
        background-color: #128C7E;
        transform: scale(1.1);
    }
    
    .nav-whatsapp i {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-card);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 0.5rem;
    }
    
    .mobile-whatsapp {
        display: none;
    }
} 