/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #e4e6ea;
    background: linear-gradient(180deg, #0a0a12 0%, #111122 50%, #1a1a2e 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    font-variant-numeric: tabular-nums;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: rgba(15, 18, 32, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(15, 18, 32, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1.2rem 0;
    transition: padding 0.3s ease;
}

/* Header Scroll Effects */
.main-header.scrolled {
    background: rgba(15, 18, 32, 0.9);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(15, 18, 32, 0.6);
    border-bottom: 1px solid rgba(96, 165, 250, 0.4);
}

/* Glassy Header State */
.main-header.glassy {
    background: rgba(15, 18, 32, 0.15);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(15, 18, 32, 0.2);
    border-bottom: 1px solid rgba(96, 165, 250, 0.15);
}

.main-header.scrolled .navbar {
    padding: 0.8rem 0;
}

.main-header.scrolled .logo {
    height: 38px;
}

.main-header.scrolled .brand-name {
    font-size: 1.4rem;
}

/* Header Hover Effects */
.main-header.glassy:hover {
    background: rgba(15, 18, 32, 0.25);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(96, 165, 250, 0.25);
}

.main-header.scrolled:hover {
    background: rgba(15, 18, 32, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(96, 165, 250, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.logo {
    height: 45px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(96, 165, 250, 0.3));
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.025em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}


.nav-logo:hover .logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(96, 165, 250, 0.4));
}

.nav-logo:hover .brand-name {
    color: #e0f2fe;
    text-shadow: 0 2px 8px rgba(96, 165, 250, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e4e4e7;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(96, 165, 250, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #e4e4e7;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    color: #fff;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.7) contrast(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 18, 0.6) 0%, rgba(17, 17, 34, 0.5) 30%, rgba(26, 31, 53, 0.4) 70%, rgba(37, 43, 71, 0.3) 100%);
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #60a5fa;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #a1a1aa;
}

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

.btn {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #60a5fa;
    color: #0f0f23;
}

.btn-primary:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #e4e4e7;
    border: 2px solid #60a5fa;
}

.btn-secondary:hover {
    background: #60a5fa;
    color: #0f0f23;
}

.btn-outline {
    background: transparent;
    color: #60a5fa;
    border: 2px solid #60a5fa;
}

.btn-outline:hover {
    background: #60a5fa;
    color: #0f0f23;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Projekt Intro Section */
.project-intro {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1f35 0%, #1e2340 50%, #22274a 100%);
    position: relative;
    z-index: 2;
}

.project-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #f4f4f5;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: linear-gradient(145deg, #1e2340 0%, #252b47 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 1px solid rgba(96, 165, 250, 0.15);
    backdrop-filter: blur(5px);
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #60a5fa;
}

.card-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f4f4f5;
}

.project-card p {
    color: #a1a1aa;
    line-height: 1.8;
}

/* Was wir machen Section */
.what-we-do {
    padding: 80px 0;
    background: linear-gradient(180deg, #22274a 0%, #1e2340 50%, #1a1f35 100%);
    position: relative;
    z-index: 2;
}

.what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.activities-grid {
    display: grid;
    gap: 3rem;
}

.activity-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(145deg, #1a1f35 0%, #1e2340 100%);
    border: 1px solid rgba(96, 165, 250, 0.12);
    backdrop-filter: blur(5px);
}

.activity-item:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.activity-item:nth-child(even) .activity-image {
    order: 2;
}

.activity-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.activity-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f4f4f5;
}

.activity-content p {
    color: #a1a1aa;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #1a1f35 0%, #252b47 50%, #2a2f52 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #a1a1aa;
}

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

/* Footer */
.main-footer {
    background: linear-gradient(180deg, #2a2f52 0%, #1e2340 50%, #0f1220 100%);
    color: #e4e6ea;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(96, 165, 250, 0.15);
    position: relative;
    z-index: 3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #60a5fa;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3f3f46;
    opacity: 0.8;
    color: #71717a;
}

.credit-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.credit-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(180deg, #1a1f35 0%, #252b47 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.4);
        padding: 2rem 0;
        border-top: 1px solid rgba(96, 165, 250, 0.15);
        backdrop-filter: blur(10px);
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Mobile Video Optimization */
    .hero-video-bg video {
        /* Reduziere Qualität auf mobilen Geräten für bessere Performance */
        filter: brightness(0.6) contrast(1.2);
    }

    .video-overlay {
        /* Stärkerer Overlay auf mobilen Geräten für bessere Lesbarkeit */
        background: linear-gradient(135deg, rgba(10, 10, 18, 0.8) 0%, rgba(17, 17, 34, 0.7) 30%, rgba(26, 31, 53, 0.6) 70%, rgba(37, 43, 71, 0.5) 100%);
    }

    .activity-item,
    .activity-item:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .activity-item:nth-child(even) .activity-image {
        order: 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

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

    .project-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(96, 165, 250, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.scale-in.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.4);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Enhanced Card Animations */
.project-card {
    transform: translateZ(0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    will-change: transform;
}

.project-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow:
        0 20px 40px rgba(96, 165, 250, 0.15),
        0 0 0 1px rgba(96, 165, 250, 0.2);
}

.project-card .card-icon {
    transition: transform 0.4s ease;
}

.project-card:hover .card-icon {
    transform: scale(1.1) rotateY(10deg);
}

/* Activity Item Animations */
.activity-item {
    transition: all 0.4s ease;
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(96, 165, 250, 0.1);
}

.activity-image {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.activity-item:hover .activity-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Navigation Animations */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

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

/* Enhanced Logo Animations */
@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 2px 8px rgba(96, 165, 250, 0.2));
    }

    50% {
        filter: drop-shadow(0 4px 16px rgba(96, 165, 250, 0.4));
    }
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(96, 165, 250, 0.4));
}

/* Brand Name Animation */
@keyframes brandShine {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.brand-name.shine {
    background: linear-gradient(90deg,
            #ffffff 0%,
            #60a5fa 25%,
            #ffffff 50%,
            #60a5fa 75%,
            #ffffff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brandShine 3s linear infinite;
}

/* Hero Animations */
.hero-title {
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-image {
    opacity: 0;
    animation: fadeInRight 1s ease 0.5s forwards;
}

.hero-image img {
    /* Animation entfernt - Bild soll statisch bleiben */
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered Animation for Cards */
.project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Section Title Animation */
.section-title {
    position: relative;
    overflow: hidden;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.6s ease;
}

.section-title.visible::after {
    transform: translateX(-50%) scaleX(1);
}

/* Footer Animation */
.footer-section {
    transition: transform 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.bar {
    transition: all 0.3s ease;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Parallax Effect */
.hero {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Smooth Transitions */
* {
    scroll-behavior: smooth;
}

/* Performance Optimizations */
.project-card,
.activity-item,
.btn,
.nav-link {
    will-change: transform;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(96, 165, 250, 0.3);
    border-radius: 50%;
    border-top-color: #60a5fa;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Text Glow Effect */
.glow-text {
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(96, 165, 250, 0.8);
    }
}

/* Card Flip Animation */
.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Bounce Animation */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

/* Slide In Animations */
.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 2px solid #60a5fa;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #60a5fa;
    }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-image img {
        animation: none !important;
        transform: none !important;
    }

    .ripple {
        animation: none !important;
    }
}

/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #18181b;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #60a5fa;
}

/* Archive Specific Overrides for Layout */
.archive-hero {
    min-height: 50vh;
    padding-top: 120px;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.projects-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f0f23 0%, #18181b 100%);
    position: relative;
    z-index: 2;
}

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

.project-card {
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.project-card:hover h3 {
    color: #60a5fa;
}