@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');
        
:root {
    --primary: #0f172a;
}

* {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.tail-container {
    font-family: 'Inter', system-ui, sans-serif;
}

/* Prevent horizontal overflow on mobile */
html, body {
    overflow-x: hidden;
}

.logo-font {
    font-family: 'Space Grotesk', sans-serif;
}

.hero-bg {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('https://picsum.photos/id/1015/2000/1200') center/cover no-repeat;
}

.modal-content {
    animation: modalPop 0.3s ease forwards;
}

@keyframes modalPop {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.carousel-slide {
    transition: transform 0.5s ease;
}

#carousel {
    transition: transform 0.5s ease;
    will-change: transform;
}

#carouselContainer {
    touch-action: pan-y;
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #eab308;
}

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

.service-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 25px 25px 0 -10px rgb(234 179 8);
}

/* Lightbox */
.lightbox-overlay {
    animation: lbFadeIn 0.25s ease forwards;
}
@keyframes lbFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
.lightbox-img {
    animation: lbZoomIn 0.3s ease forwards;
}
@keyframes lbZoomIn {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}