/* Grundlegende Stile */
:root {
    --primary-blue: #29ABE2;
    --secondary-pink: #D631A2;
    --dark-bg: #0A0E14;
    --light-text: #ffffff;
    --dark-text: #333333;
    --gradient: linear-gradient(135deg, var(--secondary-pink), var(--primary-blue));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: rgba(10, 14, 20, 0.9);
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 80px; /* Logo größer gemacht */
    width: auto;
    transition: all 0.3s ease;
}

header.scrolled .logo {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center; /* Vertikal zentriert */
    height: 80px; /* Gleiche Höhe wie Logo */
}

/* Besonderer Stil für den Anfrage-Button in der Navigation */
.nav-links .cta-button {
    display: inline-block;
    padding: 12px 40px;
    margin: 0 10px; /* Abstand links und rechts */
    border-radius: 50px;
    cursor: pointer;
}

.nav-link {
    margin-left: 40px;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link:last-child {
    margin-right: 10px; /* Zusätzlicher Abstand für den letzten Menüpunkt */
}

.nav-link a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.nav-link a.cta-button {
    padding: 12px 40px; /* Sicherstellen, dass die Button-Styles auch hier angewendet werden */
}

.nav-link a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 28px; /* Angepasst für vertikale Zentrierung */
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

/* Keine Linie unter dem Button beim Hover */
.nav-link a.cta-button::after {
    display: none;
}

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

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

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background: var(--light-text);
}

.cta-button {
    display: inline-block;
    padding: 12px 40px; /* Horizontales Padding erhöht */
    color: white;
    background: var(--gradient);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-left: 20px; /* Abstand zum vorherigen Element */
    letter-spacing: 0.5px; /* Leicht erhöhter Buchstabenabstand */
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-pink));
    transition: all 0.5s ease;
    z-index: -1;
}

.cta-button:hover::before {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.language-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 5px 8px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.language-switcher span {
    margin: 0 6px; /* Mehr Abstand zwischen DE / EN */
    color: rgba(255, 255, 255, 0.5);
}

.language-btn:hover {
    color: var(--primary-blue);
}

.language-btn.active {
    color: var(--light-text);
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: rgba(10, 14, 20, 0.7);
    margin-top: 80px; /* Angepasst an die Höhe der Navigationsleiste */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    filter: brightness(0.3);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
}

.hero h1 span.gradient-text {
    font-size: 4rem; /* Kleinere Größe für Veranstaltungstechnik */
    white-space: nowrap; /* Verhindert Umbrüche im Titel */
}

.hero h1 span {
    display: block;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-slogan {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.secondary-button {
    display: inline-block;
    padding: 12px 28px;
    color: white;
    background: transparent;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: white;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Service Pillars Section */
.services {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title .divider {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.8);
}

.service-pillars {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pillar {
    width: 31%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.pillar:hover::before {
    opacity: 0.05;
}

.pillar:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
    font-size: 4rem; /* Material Icon Größe */
    color: var(--primary-blue);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.pillar h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pillar p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.pillar-features {
    text-align: left;
    width: 100%;
    position: relative;
    z-index: 1;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    margin-right: 15px;
    color: var(--primary-blue);
}

.pillar-action {
    margin-top: auto;
    position: relative;
    z-index: 1;
}

/* Equipment Section */
.equipment {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.equipment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    filter: blur(5px);
    background: url('../images/equipment-bg.jpg') center/cover no-repeat;
}

.equipment-tabs {
    display: flex;
    justify-content: center;
    margin: 50px 0 20px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.tab {
    padding: 12px 25px;
    background: transparent;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    position: relative;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0 10px 10px;
    border-radius: 5px;
}

.tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.3s ease;
}

.tab.active {
    color: var(--primary-blue);
}

.tab.active::before {
    width: 100%;
}

/* Scroll Hint */
.scroll-hint {
    text-align: center;
    margin: 5px 0 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-hint i {
    margin-left: 5px;
    animation: scroll-hint 1.5s infinite;
}

@keyframes scroll-hint {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

/* Equipment Carousel */
.equipment-carousel-container {
    position: relative;
    margin: 20px 0;
    padding: 0;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-text);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0.7;
}

.carousel-arrow:hover {
    opacity: 1;
    background: var(--gradient);
    border-color: transparent;
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

.equipment-grid {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    scroll-behavior: smooth; /* Für sanftes Scrollen */

    /* Für moderne Browser */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.equipment-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* Für Windows/Linux/Android Geräte mit Scrollbar-Präferenz */
@media (hover: hover) {
    .equipment-grid:hover {
        scrollbar-width: thin;
        -ms-overflow-style: auto;
    }

    .equipment-grid:hover::-webkit-scrollbar {
        display: block;
        height: 4px;
    }

    .equipment-grid:hover::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }

    .equipment-grid:hover::-webkit-scrollbar-thumb {
        background: var(--primary-blue);
        border-radius: 4px;
    }

    .equipment-grid:hover::-webkit-scrollbar-thumb:hover {
        background: var(--secondary-pink);
    }
}

.equipment-item {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 450px; /* Feste Höhe für alle Cards */
}

.equipment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.equipment-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.equipment-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Nimmt verfügbaren Platz ein */
}

.equipment-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.equipment-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Nimmt verfügbaren Platz ein */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.equipment-specs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: auto; /* Drückt die Specs nach unten */
}

.spec {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 48%;
}

.spec-icon {
    margin-right: 10px;
    color: var(--primary-blue);
}

.more-equipment {
    text-align: center;
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 100%;
}

.more-equipment p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    position: relative;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px 0 40px;
}

.filter-button {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-text);
    margin: 0 10px 10px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button.active,
.filter-button:hover {
    background: var(--gradient);
    border-color: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.portfolio-button {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: none;
}

.testimonial.active {
    display: block;
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-blue);
    position: absolute;
    opacity: 0.2;
}

.testimonial-quote::before {
    top: -20px;
    left: -20px;
}

.testimonial-quote::after {
    bottom: -60px;
    right: -20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gradient);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    position: relative;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info {
    width: 45%;
}

.contact-form {
    width: 50%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-blue);
}

.contact-text h4 {
    margin-bottom: 5px;
}

.contact-text p, .contact-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--light-text);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient);
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Custom Dropdown */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--light-text);
    height: 50px;
    line-height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
}

.custom-select-trigger:after {
    content: "";
    position: absolute;
    right: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #fff transparent transparent transparent;
    transition: all 0.3s ease;
}

.custom-select.opened .custom-select-trigger:after {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 0;
    background: #1a1a1a;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    z-index: 10;
}

.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: block;
    padding: 12px 15px;
    color: var(--light-text);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-blue);
}

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

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 80px 0 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-column {
    width: 23%;
}

.footer-logo {
    margin-bottom: 20px;
    height: 70px;
    width: auto;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 10px;
    color: var(--primary-blue);
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px 0 0 50px;
    color: var(--light-text);
}

.newsletter-button {
    padding: 0 20px;
    background: var(--gradient);
    border: none;
    border-radius: 0 50px 50px 0;
    color: white;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Freelance Link Styles */
.freelance-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.freelance-link:hover {
    color: var(--secondary-pink);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero h1 span.gradient-text {
        font-size: 3.5rem;
    }

    .pillar {
        width: 48%;
        margin-bottom: 30px;
    }

    .footer-column {
        width: 48%;
        margin-bottom: 40px;
    }

    /* Equipment Anpassungen */
    .equipment-tabs {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .tab {
        margin-bottom: 10px;
        font-size: 14px;
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: all 0.3s ease;
        padding: 40px 0;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-link {
        margin: 20px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero h1 span.gradient-text {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .pillar {
        width: 100%;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        width: 100%;
    }

    .contact-info {
        margin-bottom: 50px;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 40px;
    }

    /* Equipment Anpassungen für mobile Geräte */
    .equipment-carousel-container {
        padding: 0;
    }

    .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
        opacity: 0.6;
        background: rgba(0, 0, 0, 0.7);
    }

    .equipment-grid {
        padding: 10px 0;
        gap: 20px;
    }

    .equipment-item {
        flex: 0 0 260px;
        height: 430px;
    }

    .equipment-info p {
        -webkit-line-clamp: 3; /* Begrenzt Text auf 3 Zeilen auf Mobilgeräten */
        font-size: 0.9rem;
    }

    .spec {
        font-size: 0.9rem;
    }

    /* Mobile Anpassungen für Scrollhinweis */
    .scroll-hint {
        font-size: 12px;
        margin-bottom: 10px;
    }

    /* Mobile Anpassungen für more-equipment Box */
    .more-equipment {
        padding: 20px 15px;
        margin-top: 30px;
    }

    .more-equipment p {
        font-size: 0.9rem;
    }

    /* Equipment Tabs für mobile Geräte */
    .equipment-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .tab {
        flex: 0 0 auto;
        margin: 5px;
        font-size: 12px;
        padding: 8px 12px;
        white-space: nowrap;
    }

    /* Portfolio Grid */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    /* Language Switcher */
    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h1 span.gradient-text {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .footer-about {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-title {
        text-align: center;
    }

    .footer-links li {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    /* Custom Select für mobile */
    .custom-select-trigger {
        font-size: 13px;
    }

    .custom-option {
        font-size: 13px;
        padding: 10px;
    }
}