/**
 * CHAMP Kicks - Desktop-specific Styles
 *
 * This stylesheet is loaded only on screens wider than 992px.
 * It contains overrides and enhancements for the desktop experience.
 */

/* ========================= HEADER ========================= */
.header-main {
    border-bottom: 1px solid #e9ecef;
}

.header-top-bar {
    background-color: #f8f9fa;
    padding: 0.25rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid #e9ecef;
}

.header-top-bar .nav-link {
    padding: 0.25rem 0.75rem;
    color: #6c757d;
}

.header-top-bar .nav-link:hover {
    color: #000;
}

.header-main-nav .nav-link {
    position: relative;
    padding-bottom: 0.5rem;
    transition: color 0.2s ease-in-out;
}

.header-main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--bs-primary);
    transition: width 0.3s ease-in-out;
}

.header-main-nav .nav-link:hover::after,
.header-main-nav .nav-link.active::after {
    width: 100%;
}

.header-main-nav .nav-link.active {
    font-weight: 600;
    background-color: rgba(0,0,0,0.04);
    border-radius: 6px;
}

/* ========================= HERO BANNER (HOMEPAGE) ========================= */
.hero-banner-item {
    /* Give the hero banner a minimum height on desktop to ensure it's impactful */
    min-height: 450px;
}

.hero-banner-item img {
    /* Ensure the image within the banner covers the entire area */
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* ========================= HOMEPAGE SECTIONS ========================= */
/* Add more top margin to sections on desktop for better visual separation */
.home-section {
    margin-top: 4rem; /* Equivalent to Bootstrap's .mt-5 */
}