* {
    margin: 0;
    padding: 0;
}

html {
    background: white;
}

.header {
    height: fit-content;
    width: 100%;
    background: gray;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 4px solid black;
    padding: 0 2vw;
    position: relative;
    flex-direction: row;
}

.header-icon {
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* Ensure it centers horizontally */
}

.header-navigation {
    display: flex;
    flex-direction: row;
    gap: 2em;
    justify-content: center;
    flex-grow: 1;
}

.header-navigation-item {
    font-size: 1.5rem;
    color: white;
}

.header-navigation-item a {
    text-decoration: none;
    color: inherit;
}

.header-navigation-item a:hover {
    text-shadow: 
    1px 1px 0px rgba(0, 0, 0, 0.75), 
    -1px -1px 0px rgba(0, 0, 0, 0.75),
    1px -1px 0px rgba(0, 0, 0, 0.75),
    -1px 1px 0px rgba(0, 0, 0, 0.75);
    transition: text-shadow 0.1s ease;
}

.fake-icon {
    color: black;
    font-size: 4vw;
    text-align: center;
    line-height: 84px;
    padding-left: 1em;
    text-shadow: 
  1px 1px 2px rgba(0, 0, 0, 0.7),
  -1px -1px 2px rgba(0, 0, 0, 0.7),
  1px -1px 2px rgba(0, 0, 0, 0.7),
  -1px 1px 2px rgba(0, 0, 0, 0.7),
  0 0 10px rgba(0, 0, 0, 0.5);
}

.hamburger-icon {
    display: none;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    padding: 0.5em;
    margin-top: 0; /* Remove margin-top */
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 1em;
    position: absolute;
    top: 60px;
    right: 0;
    background: gray;
    width: 100%;
    padding: 1em 2vw;
    border-bottom: 4px solid black;
}

.hamburger-menu .header-navigation-item {
    font-size: 1.5rem;
    color: white;
}

.hamburger-menu .header-navigation-item a {
    text-decoration: none;
    color: inherit;
}

.hamburger-menu .header-navigation-item a:hover {
    text-shadow: 
    1px 1px 0px rgba(0, 0, 0, 0.75), 
    -1px -1px 0px rgba(0, 0, 0, 0.75),
    1px -1px 0px rgba(0, 0, 0, 0.75),
    -1px 1px 0px rgba(0, 0, 0, 0.75);
    transition: text-shadow 0.1s ease;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;  /* Stack the header items vertically */
        align-items: center;
        padding: 1em 2vw;
    }

    .header-navigation {
        display: none; /* Hide navigation on small screens */
    }

    .hamburger-icon {
        display: block; /* Show hamburger icon */
        margin-top: 0; /* Remove margin-top */
    }

    .hamburger-menu.active {
        display: flex; /* Show dropdown when active */
    }

    .header-icon {
        display: flex;
        justify-content: center; /* Center the title icon */
        align-items: center; /* Vertically center the title icon */
    }
}
