/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styling for the header */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000; /* Ensures header stays above content */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
    transition: background-color 0.3s ease;
}

/* The content inside the header */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

/* Styling for the navigation menu */
.main-nav ul {
    display: flex;
    list-style-type: none;
}

.main-nav ul li {
    margin-right: 20px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

/* Optional styles for sticky header */
.site-header.sticky {
    background-color: #333; /* Dark background when sticky */
    color: #fff; /* Text color change */
}

.site-header.sticky .main-nav ul li a {
    color: #fff; /* Navigation link color change when sticky */
}
