/* Promo Banner Styles */
.promo-banner {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    width: 100%;
    z-index: 1001;
    /* Ensure it's above everything else in flow */
    position: relative;
}

.promo-banner span {
    font-weight: 700;
    color: #ffffff;
}

/* Make header sticky so it sticks after banner scrolls away */
header {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0;
    /* Reset fixed positioning properties if needed */
    width: 100%;
    z-index: 1000;
}

/* Adjust Hero Section padding since header is now in flow (sticky) */
/* Previously 150px top padding to account for fixed header */
.hero {
    padding-top: 80px !important;
}

/* Ensure body doesn't have weird margins affecting sticky */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Adjust main content wrapper if exists, otherwise body is fine */

/* Add scroll margin to sections to prevent sticky header from covering titles */
section[id], 
div[id] {
    scroll-margin-top: 100px;
}

/* Adjust Page Banner padding since header is now in flow (sticky) */
/* Previously 100px top padding to account for fixed header */
.page-banner {
    padding-top: 30px !important;
}

/* Remove header margin to prevent gap between header and hero section */
header {
    margin-bottom: 0 !important;
}
