/* Grundlegende Reset und allgemeine Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-yellow: #af5c24;
    --secondary-yellow: #a35f11;
    --highlight-yellow: #a06b08;
    --dark-black: #0A0A0A;
    --medium-black: #121212;
    --light-black: #1A1A1A;
    --text-white: #F5F5F5;
    --yellow-glow: 0 0 15px rgba(255, 215, 0, 0.7);
    --yellow-glow-intense: 0 0 25px rgba(255, 215, 0, 0.9);
}

body {
    background-color: var(--dark-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-yellow);
    color: var(--dark-black);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    border: 2px solid var(--primary-yellow);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--yellow-glow);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: var(--dark-black);
    color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: var(--yellow-glow-intense);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-yellow);
}

.btn-outline:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-black);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-yellow);
    transition: all 0.4s ease;
}

header.sticky {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--primary-yellow);
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
    text-shadow: var(--yellow-glow);
}

.logo::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: var(--primary-yellow);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-yellow);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-yellow);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover::before {
    transform: scaleX(1);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, var(--dark-black), var(--medium-black));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, var(--dark-black));
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(60px);
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.15;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary-yellow);
    text-shadow: var(--yellow-glow);
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-white);
    animation: fadeIn 1s ease 0.3s backwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 1s ease 0.6s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: var(--primary-yellow);
    text-shadow: var(--yellow-glow);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-yellow);
}

/* About Section */
.about {
    background-color: var(--medium-black);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-yellow);
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: scale(1.03);
    box-shadow: var(--yellow-glow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

/* Services Section */
.services {
    background-color: var(--light-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--medium-black);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-yellow) 0%, transparent 100%);
    opacity: 0.1;
    z-index: -1;
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: var(--yellow-glow);
}

.service-card:hover::before {
    top: 0;
}

.service-icon {
    font-size: 36px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background-color: var(--dark-black);
    color: var(--primary-yellow);
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    box-shadow: 0 0 0 8px rgba(255, 215, 0, 0.3);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-yellow);
}

/* Pricing Section */
.pricing {
    background-color: var(--medium-black);
}

.pricing-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 28px;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 30px;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-plan {
    background-color: var(--light-black);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: var(--yellow-glow);
    border-color: var(--primary-yellow);
}

.plan-duration {
    padding: 15px 0;
    background-color: var(--dark-black);
    color: var(--text-white);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-yellow);
}

.plan-price {
    padding: 30px 0;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-yellow);
    background-color: var(--medium-black);
}

.plan-features {
    list-style: none;
    padding: 30px;
}

.plan-features li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

.pricing-plan .btn {
    display: block;
    margin: 0 30px 30px;
    text-align: center;
}

/* Values Section */
.values {
    background-color: var(--light-black);
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(60px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--medium-black);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-yellow);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--yellow-glow);
}

.value-card h3 {
    color: var(--primary-yellow);
    font-size: 22px;
    margin-bottom: 15px;
}

/* Why Choose Section */
.why-choose {
    background-color: var(--medium-black);
    text-align: center;
}

.why-choose p {
    max-width: 800px;
    margin: 0 auto 20px;
}

.why-choose .btn {
    margin-top: 30px;
}

/* Contact Section */
#contact {
    background-color: var(--light-black);
}

/* Footer */
footer {
    background-color: var(--dark-black);
    padding: 70px 0 20px;
    border-top: 2px solid var(--primary-yellow);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--primary-yellow);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-yellow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations und Effekte */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Cursor Effect */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-yellow);
    opacity: 0.5;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transition: transform 0.2s, width 0.2s, height 0.2s, opacity 0.2s;
    transform: translate(-50%, -50%);
    display: none;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.5;
    transform: translate(-50%, -50%);
    transition: transform 0.6s, width 0.2s, height 0.2s, opacity 0.2s;
    display: none;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .about-image {
        margin-top: 30px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        font-size: 24px;
        color: var(--primary-yellow);
        background: none;
        border: none;
        cursor: pointer;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background-color: var(--dark-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        transition: right 0.5s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        border-left: 2px solid var(--primary-yellow);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .category-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 576px) {
    .hero h1 {
        font-size: 30px;
    }

    .service-card,
    .value-card,
    .pricing-plan {
        padding: 20px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-yellow);
}

/* Zusätzlicher Hintergrundeffekt */
.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0.4;
}

::-webkit-scrollbar {
    width: 8px; 
  }
  
  ::-webkit-scrollbar-track {
    background: transparent; 
  }
  
  ::-webkit-scrollbar-thumb {
    background: rgba(136, 136, 136, 0.1);
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(136, 136, 136, 0.5);
  }
  
  * {
    scrollbar-width: thin;
    scrollbar-color: rgba(136, 136, 136, 0.1) transparent;
  }
  
  *:hover {
    scrollbar-color: rgba(136, 136, 136, 0.5) transparent;
  }