@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Smooth transitions */
a, button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Nordium theme colors */
.nordium-bg {
    background: #0f172a;
}

.nordium-text {
    color: #1e293b;
}

.nordium-accent {
    background: #1e293b;
}

/* Social icon hover effects */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.15);
}

/* Subtle background */
.bg-gradient-soft {
    background: #f8fafc;
}

/* Section card styling */
.section-card {
    transition: all 0.3s ease;
}

.section-card:hover {
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
}

/* Mobile menu animation */
.mobile-menu {
    transition: max-height 0.3s ease-in-out;
}

/* Carousel slider styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-wrapper {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

.carousel-container:hover .carousel-wrapper {
    animation-play-state: paused;
}

.carousel-track {
    display: flex;
    gap: 4rem;
    flex-shrink: 0;
}

.carousel-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 120px;
    padding: 1.5rem;
    background: transparent;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.carousel-item:hover {
    transform: translateY(-4px) scale(1.08);
    opacity: 1;
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(40%) opacity(0.7);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.carousel-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

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

