
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* Base Styles */
body {
    scroll-behavior: smooth;
    position: relative;
    min-height: 100vh;
}
.impressum-content {
    margin-top: -6rem !important;
}

@media (min-width: 768px) {
    .impressum-content {
        margin-top: -3rem !important;
    }
}
/* Particles Background */
.particles {
    background: url('http://static.photos/nature/1920x1080/42') no-repeat center center;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    filter: brightness(1.2) contrast(1.1);
}
@media (max-width: 768px) {
    .particles {
        background-attachment: scroll;
        background-position: center 30%;
    }
    .hero-section {
        min-height: 60vh;
        padding-top: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: -3rem;
    }
.hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-section .container {
        padding-top: 0;
        padding-bottom: 0;
    }
    #faq-content {
        padding-top: 1rem;
        padding-bottom: 2rem;
        margin-top: -3rem;
    }
.faq-item {
        margin-bottom: 1.5rem;
    }
}
.particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34,34,34,0.85) 0%, rgba(34,34,34,0.65) 100%);
    z-index: 1;
    backdrop-filter: blur(1px);
}
/* Service Cards */
.service-card {
    @apply bg-dark/50 backdrop-blur-lg p-8 rounded-xl border border-light/10 hover:border-primary/50 transition-all duration-300 transform hover:-translate-y-2 shadow-xl flex flex-col;
}
.service-image {
    @apply mb-6 overflow-hidden rounded-lg;
    height: 160px;
    width: 100%;
}
.service-image img {
    @apply w-full h-full object-cover transition-transform duration-500 group-hover:scale-105;
}

.hovered-element:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(192, 192, 192, 0.3);
    transition: all 0.3s ease;
}
}
.team-card {
    @apply bg-dark/50 backdrop-blur-lg rounded-lg border border-light/10 overflow-hidden transition-all duration-300 transform hover:-translate-y-2 shadow-lg;
}

.team-image {
    @apply overflow-hidden;
}

.team-info {
    @apply p-6;
}
/* FAQ Styles */
.faq-item {
    @apply bg-dark/50 backdrop-blur-lg rounded-lg border border-light/10 transition-all duration-300 overflow-hidden;
}

.faq-question {
    @apply flex items-center justify-between p-6 w-full text-left;
    font-size: 1.1rem;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.faq-question:hover {
    @apply bg-dark/70;
}

.faq-question h3 {
    @apply flex items-center gap-2;
    font-size: 1.3rem;
    margin: 0;
}

.faq-answer {
    @apply px-6 pb-6 overflow-hidden;
    color: #E0E0E0;
    font-size: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[x-cloak] { display: none !important; }
.service-card .icon-box i {
    @apply w-8 h-8;
    color: #005EB8;
    stroke-width: 2;
}
/* Testimonial Slider */
.testimonial-slider {
    position: relative;
}

.testimonial {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial.active {
    display: block;
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
}
/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background: #FF0000;
border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF0000;
}
/* GSAP Animation Classes */
.gsap-fade-in {
    opacity: 0;
}

.gsap-slide-up {
    opacity: 0;
    transform: translateY(50px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    .hero-section .flex.flex-col a {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1rem 0;
        font-size: 1rem;
    }
    
    .hero-section .flex a img {
        width: 24px;
        height: 24px;
    }
}
