@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
    /* Target Site Colors (HSL) */
    /* Target Site Colors */
    --primary-color: #5ba4cf;

    --secondary-h: 210;
    --secondary-s: 40%;
    --secondary-l: 96.1%;
    --secondary-color: hsl(var(--secondary-h), var(--secondary-s), var(--secondary-l));

    /* Bootstrap Overrides */
    --bs-primary: var(--primary-color);
    --bs-secondary: var(--secondary-color);
    --bs-body-font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--bs-body-font-family);
}

/* Utility Classes matching Target */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-footer {
    background-color: #1a2a36;
}

/* Hero Section Overrides */
.hero-section {
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Navbar Customization */
.navbar {
    background-color: var(--primary-color) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-shadow: 1px 4px 12px rgba(0, 0, 0, 0.3);
    /* letter-spacing: 0.5px; */

}

.navbar-brand img {
    height: 44px;
    /* Match target logo height */
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    /* font-size: 0.9rem; */
    letter-spacing: 0.5px;
    font-size: medium;
    
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Carousel Fade Effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Active Nav Link */
.nav-link.active {
    text-decoration: underline !important;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
    font-weight: 600;
}

/* Custom Slider Button */
.btn-custom-slider {
    background-color: #5ba4cf !important;
    border-color: #5ba4cf !important;
    color: #ffffff !important;
}

.btn-custom-slider:hover {
    background-color: #4a93bd !important;
    border-color: #4a93bd !important;
}

/* Custom Outline Button (Learn More) */
.btn-custom-outline {
    color: #5ba4cf !important;
    border-color: #5ba4cf !important;
    background-color: transparent !important;
}

.btn-custom-outline:hover {
    background-color: #5ba4cf !important;
    color: #ffffff !important;
    border-color: #5ba4cf !important;
}