#header-container {
    position: sticky;
    top: 0;
    z-index: 100;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 192, 203, 0.85); /* Light pink background */
    color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.home-button {
    font-size: 18px;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border: 2px solid white;
    border-radius: 5px;
    background-color: #ff69b4; /* Hot pink for the button */
}

.home-button:hover {
    background-color: #ff1493; /* Deeper pink on hover */
    transform: scale(1.1); /* Button grows slightly on hover */
}

.nav-center {
    display: flex;
    gap: 20px;
    justify-content: center; /* Center the buttons */
}

.nav-center a {
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    text-decoration: none;
    background-color: #ff69b4;
    border-radius: 5px;
    border: 2px solid white;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-center a:hover {
    background-color: #ff1493;
    transform: scale(1.1); /* Button grows slightly on hover */
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: white;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background-color: #ff69b4;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-menu a {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: white;
    text-decoration: none;
    background-color: #ff69b4;
    text-align: left;
    transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #ff1493;
}

/* Responsive Styling */
@media (max-width: 600px) {
    .nav-center {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .dropdown-menu.show {
        display: block;
    }
}