.menu-icon {
    font-size: 20px;
    color: white;
    cursor: pointer;
    filter: invert(1);
}
.search-icon {
    font-size: 20px;
    color: white;
    cursor: pointer;
    filter: invert(1);
}
/* Ensure both icons are vertically aligned */
.menu-icon, .search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0px 10px;
}
.menu-icon:hover, .search-icon:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Subtle hover effect */
}
.headertext {
    font-family: "Poppins", sans-serif;
    position: sticky;
    top: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 55px;
    margin: 0;
    padding: 0px;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    justify-content: space-between;
    background: linear-gradient(136deg, rgb(236 40 40) 0%, rgb(125 3 3) 100%);
    z-index: 2;
}
.headertext a {
    text-decoration: none;
    color: white;
    flex-grow: 1;
    text-align: center;
}
.upward-effect {
    display: inline-block;
    animation: slide-up 20s linear forwards; /* No infinite loop, runs once */
    font-size: inherit;
}
@keyframes slide-up {
    0% {
        transform: translateY(100%); /* Start below the view */
        opacity: 0; /* Hidden */
    }
    10% {
        transform: translateY(0); /* Reach visible position */
        opacity: 1; /* Fully visible */
    }
    80% {
        transform: translateY(0); /* Hold in place */
        opacity: 1;
    }
    100% {
        transform: translateY(0); /* Stay visible at the end */
        opacity: 1;
    }
}
#tagline {
    font-family: "Poppins", sans-serif;
    position: sticky;
    top: 0;
    z-index: 1;
    width: 100%;
    text-align: center;
    background: #eee;
    color: #242424;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 18px;
}
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 3;
    text-align: left;
    padding-top: 50px;
}
.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    background: #dd0000;
    border: none;
    border-radius: 5px;
    padding: 4px;
    line-height: 20px;
    font-family: "Poppins", sans-serif;
}
/* Remove bullet points and make the menu items clean */
.menu-options {
    list-style: none; /* Removes the bullet points */
    padding: 0; /* Removes extra padding from the list */
    margin: 15px; /* Removes extra margin from the list */
}
.menu-options a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: rgba(17, 17, 17, 0.5);
    background-image: linear-gradient(90deg, rgba(26, 26, 26, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    color: white;
    font-size: 18px;
    margin: 10px 0;
    padding: 5px 10px;
    border: 1px solid #222;
    text-decoration: none;
    text-transform: capitalize;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}
.menu-options a:hover {
    border: 1px solid #dd0000;
    background: rgba(17, 17, 17, 0.7);
    background-image: linear-gradient(90deg, rgba(26, 26, 26, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.menu-options a:hover::after {
    content: "⬤";
    color: rgb(221, 0, 0);
    font-size: 14px;
    transition: 0.1s;
}
.search-bar {
    display: none;
    position: fixed;
    top: 10px;
    right: 10px;
    background: white;
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 3;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.search-bar input {
    border: none;
    outline: none;
    font-size: 16px;
    padding: 5px;
    width: 200px;
}
.search-bar input::placeholder {
    color: #aaa;
}
.search-bar button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #dd0000; /* Primary blue color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.search-bar button:hover {
    opacity: 0.5;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .headertext {
    font-size: 36px;
    line-height: 45px;
    }
    .menu-icon, .search-icon {
        width: 25px;
        height: 25px;
    }
    .search-bar input {
    width: 150px;
    }
}
/* Social media container */
.social-links {
    font-family: "Poppins", sans-serif;
    text-align: center;
    margin-top: 0px;
    padding: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
/* Heading for the social links */
.social-links h4 {
    font-size: 18px; /* Adjust font size */
    color: #ffffff; /* Ensure white color for heading */
    margin-bottom: 5px; /* Add some spacing below the heading */
    font-weight: bold; /* Make the text bold */
    text-transform: uppercase; /* Capitalize all letters */
}
/* Social media links (inline display) */
.social-links a {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    margin: 2px;
    transition: color 0.3s ease;
    background: #dd0000;
    border-radius: 5px;
    padding: 5px;
    line-height: 18px;
}
/* Hover effect for social media links */
.social-links a:hover {
    background: #212121; /* Gold color on hover */
}
.menu-icon,
.search-icon {
    background: none;
    border: none;
}
.menu-options a:hover::after {
    content: "⬤";
    color: rgb(221, 0, 0);
    font-size: 14px;
    transition: 0.1s;
}