/* Fonts */
body {
    font-family: 'figtree', sans-serif;
    /* font-family: 'Space Grotesk', sans-serif; */
}

a {
    color: #282828;
    text-decoration: underline;
    text-decoration-color: var(#696969); /* Your brand orange */
    text-decoration-thickness: 2px; /* Makes the underline more prominent */
    text-underline-offset: 3px;     /* Adds space between text and underline */
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #000; /* Black on hover */
    text-decoration-color: var(--brand-orange, #ff6600); /* Your brand orange */
}

/* HERO SECTION */
.hero-header {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    max-width: 500px;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
}

.underline-wrapper {
    display: inline-block;
    border-bottom: 4px solid #ff6600;
    padding-bottom: 4px;
}

#cursor {
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
    color: #000;
    font-weight: 700;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

/* NAV MENU */
.navbar-toggler {
    border: none !important;
    /* Removes default border */
    box-shadow: none !important;
    /* Removes focus outline */
    background: transparent;
    padding: 0.5rem;
    /* Optional: adjust spacing */
}

/* Icon default and transition */
.navbar-toggler i {
    color: #000;
    /* default color */
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 1.5rem;
}

/* Change color when hovered or when menu is expanded */
.navbar-toggler:hover i,
.navbar-toggler:focus i,
.navbar-toggler[aria-expanded="true"] i {
    color: #ff6600 !important;
}

/* PROJECT CARDS */
.project .card-img-top {
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.project:hover .card-img-top {
    filter: brightness(85%) blur(1px);
    transform: scale(1.02);
}

.project .card-title {
    transition: all 0.3s ease;
}

.project:hover .card-title {
    transform: translateY(-3px);
    color: #000;
}

/* Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Project Cards Category */
.project-category {
    font-size: 0.875rem;
    /* Smaller font size */
    margin-top: -0.25rem;
    /* Pull it slightly closer to the title */
    margin-bottom: 0.5rem;
    /* Add some space below it */
    color: #6c757d;
    /* A slightly darker muted color if Bootstrap's isn't enough */
    font-weight: 400;
    /* Ensure it's not too bold */
    opacity: 0.9;
    /* Slightly transparent */
}

/* Cookie Consent Banner Styling */
.cookie-consent-banner {
    z-index: 1050;
    /* Above navbar, modal backdrop */
    left: 0;
    right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent-banner .btn-primary {
    background-color: var(--primary-orange, #ff6600);
    border-color: var(--primary-orange, #ff6600);
}

.cookie-consent-banner .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 767.98px) {
    .hero-header {
        height: auto;
        padding: 4rem 0 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}


/* Alternative for Hero Section Size - More controlled padding */
@media (min-width: 992px) {
    header.vh-100 {
        padding-top: 4rem;
        /* Increase top padding */
        padding-bottom: 24rem;
        /* Increase bottom padding */
        /* Ensure that the d-flex align-items-center still centers your content vertically */
    }

    /* You might need to adjust the hero-text max-width or font sizes if needed */
    .hero-text {
        max-width: 900px;
        /* Make the text wider if there's more space */
    }

    .hero-subtitle {
        font-size: 2.5rem;
        /* Slightly larger on desktop */
    }
}