/* Header */
header {
    background: url('hero-image.jpg') no-repeat center center;
    background-size: cover;
    height: 200px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
}

/* Menü Butonu */
#menu-button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 5px;
    color: #333;
    font-size: 2rem;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Açılır Menü */
#desktop-menu {
    position: absolute;
    top: 80px;
    right: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none; /* Başlangıçta gizli */
    flex-direction: column;
    width: 300px;
    padding: 10px;
    z-index: 1000;
    border: 1px solid #ddd;
}

#desktop-menu.active {
    display: flex; /* Menü aktifken görünür */
}

#desktop-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#desktop-menu ul li {
    margin: 10px 0;
}

#desktop-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    padding: 10px 0;
    display: block;
    transition: background 0.3s ease, color 0.3s ease;
}

#desktop-menu ul li a:hover {
    background: #f0f0f0;
    color: #000;
}


}
