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

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: #9E0B0F;
    border-radius: 4px;
}
/* Navbar link styles */
.nav-link {
    position: relative;
}

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

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

/* Animation for buttons */
button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

button:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero section text animation */
h1 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay for hero paragraph */
p.text-xl {
    opacity: 0;
    animation: fadeIn 0.8s 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 0.9;
    }
}