
/* Custom styles */
:root {
  --primary: #111827;
  --secondary: #9b2c3d;
  --light: #f9fafb;
  --dark: #1f2937;
  --gray: #6b7280;
}
body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    padding-top: 0;
}

/* Ensure content doesn't get hidden behind fixed navbar */
.content-section {
    scroll-margin-top: 110px;
}

/* Hero section full height minus navbar */
#hero {
    min-height: 100vh;
    padding-top: 90px;
}

/* Custom underline */
.underline-yellow {
    position: relative;
    display: inline-block;
}

.underline-yellow::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -8px;
    left: 0;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.underline-yellow:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Custom shadow */
.shadow-custom {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}
