@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter_18pt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter_18pt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #1f2933;
    background: #ffffff;
    line-height: 1.6;
}

h1, h2, h3 {
    margin-bottom: 15px;
}

section {
    padding: 80px 20px;
}

/* NAVIGATION */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 110px;  /* Angepasst für 95px Logo */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    min-height: 110px;  /* Gleiche fixe Höhe */
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 110px;  /* Fixe Höhe für Logo-Container */
}

.nav-brand img {
    height: 250px;  


    object-fit: contain;
    transition: transform 0.3s;
}

.nav-brand img:hover {
    transform: scale(1.05);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #1f2933;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #f97316;
    background: #fff7ed;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #0f172a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero-content {
    max-width: 800px;
    margin: auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.hero-text {
    font-size: 18px;
    margin: 20px 0 40px;
}

.btn-primary {
    background: #f97316;
    color: white;
    padding: 16px 36px;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

/* SERVICES */
.services {
    background: #f8fafc;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: white;
    color: #f97316;
}

.cta-section .btn-primary:hover {
    background: #f8fafc;
    color: #ea580c;
}

/* ABOUT */
.about {
    background: white;
}

.about-box {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.about h2 {
    font-size: 32px;
    color: #0f172a;
}

.about h3 {
    font-size: 24px;
    color: #1e293b;
}

.about ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about li {
    margin: 10px 0;
    font-size: 18px;
}

/* CONTACT */
.contact {
    background: #f8fafc;
    color: #1f2933;
}

.form-message {
    display: none;
    padding: 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

.contact h3 {
    color: #0f172a;
    margin-bottom: 20px;
}

.contact-grid {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-link {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #ea580c;
    text-decoration: underline;
}

.whatsapp-link {
    display: inline-block;
    background: #25D366;
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    margin-top: 5px;
}

.whatsapp-link:hover {
    background: #20BA5A;
    text-decoration: none !important;
}

.contact-form h3 {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #f97316;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background: #f97316;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #ea580c;
}

.form-info {
    font-size: 13px;
    color: #64748b;
    margin-top: 10px;
}

/* LEGAL CONTENT */
.legal-content {
    background: white;
    padding: 60px 20px;
}

.legal-box {
    max-width: 900px;
    margin: auto;
}

.legal-box h2 {
    font-size: 28px;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f97316;
    padding-bottom: 10px;
}

.legal-box h3 {
    font-size: 22px;
    color: #1e293b;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-box h4 {
    font-size: 18px;
    color: #334155;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-box p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #475569;
}

.legal-box ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-box li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #475569;
}

.legal-box a {
    color: #f97316;
    text-decoration: none;
}

.legal-box a:hover {
    text-decoration: underline;
}

/* FOOTER */
footer {
    background: #020617;
    color: #cbd5e1;
    padding: 30px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-main {
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f97316;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* COOKIE BANNER */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 20px;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #0f172a;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.cookie-text a {
    color: #f97316;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: #f97316;
    color: white;
}

.cookie-btn.accept:hover {
    background: #ea580c;
}

.cookie-btn.reject {
    background: #e2e8f0;
    color: #475569;
}

.cookie-btn.reject:hover {
    background: #cbd5e1;
}



/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 34px;
    }

    .page-header h1 {
        font-size: 32px;
    }
    
    /* Navigation auf Tablet kleiner */
    .navbar {
        min-height: 80px;
    }
    
    .nav-container {
        min-height: 80px;
    }
    
    .nav-brand {
        height: 80px;
    }    
    /* Hamburger Menu sichtbar machen */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: right 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        gap: 0;
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }

    .nav-menu a {
        padding: 12px 20px;
        font-size: 16px;
        display: block;
    }
    
    /* Logo auf Tablet kleiner */
    .nav-brand img {
        height: 80px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 28px;
    }
    
    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    /* WhatsApp Button Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    /* Navigation auf Smartphone kompakt */
    .navbar {
        min-height: 70px;
    }
    
    .nav-container {
        flex-direction: column;
        min-height: auto;
        padding: 10px 20px;
    }
    
    .nav-brand {
        height: auto;
    }
    
    /* Logo auf Smartphone kleiner */
    .nav-brand img {
        height: 110px;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}